Hello, when putting two series of type FastStepLineBitmapSeries on the same chart, the "bottom" series is hidden by the "top" series where they overlap, even though the interior brush of the top series has the alpha set to 50%. This makes it difficult to visualize the bottom series. Note: the top green series continuously alternates between 0 and 200.
Attached is a sample.
Some workarounds that I'm aware of:
- changing the order the series are added to the chart. In my particular application this is not a viable solution, the series need to be added in a pre-determined order.
- changing the series type to StepLineSeries. Not viable since I need the performance of the FastStepLineBitmapSeries.
Possible solution:
- Make an extension of the FastStepLineBitmapSeries and the FastStepLineBitmapSegment to modify how the lines are drawn in a way that allows the segment to "receive" other segments with alpha, allowing the segment to show through any overlapping segment. The advantage would be high performance together with alpha capability. The sample includes extensions in case you need them. I see the segment WritableBitmap is of type Pbgra32 which should handle transparency.
Is this possible or is there a better solution? Thanks.