B4J Question XChart LineChart

MList

Member
Licensed User
Hi All,

I am using xchart, and i am creating a chart with one line and one graph.
Now i want to mark the max Point of the graph with a circle or an x or something like that.
It shoule not be a Max Line, only a point on the line.
How can i do that ? AddLinePointData doesnt work...
AddLine:
For i = 0 To maxwert
            LineChart.AddLineMultiplePoints(i,Array As Double(Var.TriggerWerte(i),Trlevel), i Mod Unterteilung = 0)
'            If Var.TriggerWerte(i) = maxwert And maxpointset = False Then
'                LineChart.AddLinePointData(i,maxwert,True)
'                maxpointset = True
'            End If
Next

Thanks a lot
Marion
 
Top