I need to display a SfChart. I have 2 or 3 series of data. Each series marker is visually identifiable by its shape.
I need to display the color of each marker based on each data point Status property (for example, green for Status.Passed, red for Status.Failed).
By default, it seems each ChartSeries gets its own color. And the markers are displayed with the ChartSeries color.
I tried controlling the color with the ChartSeries.PointColorMapping, but it has no effect.
I also tried setting to Fill on each ChartSeries, but this needs to be a constant for the whole ChartSeries.
I also tried setting the Fill property on the ChartMarker, but had no success.
Is there any way to achieve my requirement?