Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
15
I need connect points in VB NET - GeographicSymbolSeries
posted

I need connect point. I used GeographicSymbolSeries in VB NET . Can you help me, please?

My code:

Dim series As New GeographicSymbolSeries()
series.LongitudeMemberPath = "X"
series.LatitudeMemberPath = "Y"
Dim geoLocations As New List(Of Point)
geoLocations.Add(New Point() With {.X = -10.5848951, .Y = 3.32236253})
geoLocations.Add(New Point() With {.X = -10.5850726, .Y = 3.32231032})

series.DataSource = geoLocations
UltraGeographicMap1.Series.Add(series)

Parents
No Data
Reply Children
No Data