Pre loader

RolloverMarker above RolloverModifier's LineOverlay

Welcome to the SciChart Forums!

  • Please read our Question Asking Guidelines for how to format a good question
  • Some reputation is required to post answers. Get up-voted to avoid the spam filter!
  • We welcome community answers and upvotes. Every Q&A improves SciChart for everyone

WPF Forums | JavaScript Forums | Android Forums | iOS Forums

1
0

Is it possible to draw RolloverMarker above RolloverModifier’s LineOverlay?

Picture below show how SchiChart is working now, and what I would like to see.

enter image description here

  • You must to post comments
0
0

Hi there,

Are you setting a custom Rollover Line style? If so you will need to set Canvas.ZIndex to make it appear below the markers.

Try this, it should work

<RolloverModifier ...>
    <RolloverModifier.LineOverlayStyle>
        <Style TargetType="Line">
            <Setter Property="Stroke" Value="Green" />
            <Setter Property="StrokeThickness" Value="3" />
            <!-- Should appear beneath the markers -->
            <Setter Property="Canvas.ZIndex" Value="-1" />
            <Setter Property="IsHitTestVisible" Value="False" />
        </Style>
    </RolloverModifier.LineOverlayStyle>
</RolloverModifier>

Best regards,
Andrew

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.

Try SciChart Today

Start a trial and discover why we are the choice
of demanding developers worldwide

Start TrialCase Studies