Changing shape of point markers in QLineSeries
-
@Perdrix Take a look at the Light Markers Points Selection Example I think that QXYSeries::setLightMarker is what you are looking for.
For customizing the original point, you can use QXYseries::setPointConfiguration but it seems it's only about configuring size and color, but not the shape.
-
@Perdrix Take a look at the Light Markers Points Selection Example I think that QXYSeries::setLightMarker is what you are looking for.
For customizing the original point, you can use QXYseries::setPointConfiguration but it seems it's only about configuring size and color, but not the shape.
@Gojir4 Hmm... Unless I have missed something setting a lightmarker applies to all points or to all selected points. Or does the setting stick after the points are deselected? If so that might be almost useable if very clumsy.
There doesn't seem to be a way to set a different lightmarker (red square, blue circle, orange cross or whatever) on a per point basis. If it could be set using setPointConfiguration(index ...,) that might be helpful. But I can't see to how I might use it otherwise.
D.