-
Notifications
You must be signed in to change notification settings - Fork 981
Closed
Description
Currently it looks like in AddScatter the marker size can only be set for the whole series, but not individually. Would it be possible to accept an array of marker sizes so that each marker gets its own size?
`
//current State
formsPlot.Plot.AddScatter(xDate.ToArray(), ci.Data.ToArray(),
Color.GreenYellow, lineWidth: 0, 5, MarkerShape.filledSquare);
//possible?
formsPlot.Plot.AddScatter(xDate.ToArray(), ci.Data.ToArray(),
Color.GreenYellow, lineWidth: 0, markerSize.ToArray(), MarkerShape.filledSquare);
`
You can currently create the behavior only with the AddPoint methode. However, you do not get a legend entry here.
Maybe it is also a problem for performance if you add a lot of points with AddPoint?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
