SciChart® the market leader in Fast WPF Charts, WPF 3D Charts, iOS Chart, Android Chart and JavaScript Chart Components
Hi,
I am trying to customize the verticalLineAnnotation , kinda same as this question
all works as intended except I cant change the color of the point which is currently orange (see the photo). Would wish to have the orange dots transparent.
Would you please help.
Thank in advance.
MAGALI K.
Hi there,
Thanks for your question. It is possible to change that marker via the RolloverMarkerTemplate property on RenderableSeries. You could take a look at the “Spline Chart Example” where it is changed for SplineLineRenderableSeries:
<local:SplineLineRenderableSeries.RolloverMarkerTemplate>
<ControlTemplate>
<Ellipse Width="9" Height="9" Fill="White" Stroke="DarkGreen" StrokeThickness="1" />
</ControlTemplate>
</local:SplineLineRenderableSeries.RolloverMarkerTemplate>
Please let us know if you managed to implement the desired behavior,
Please login first to submit.