SciChart® the market leader in Fast WPF Charts, WPF 3D Charts, iOS Chart, Android Chart and JavaScript Chart Components
Hi
I want to show tooltips on point markers only.
I have FastMountainRenderableSeries with EllipsePointMarker. I don’t want to show tooltip on series, on PointMarker only so can’t use TooltipModifier.
I tried to add tooltip from XAML like this:
<sciChart:EllipsePointMarker sciChart:TooltipModifier.IncludeSeries="True">
<sciChart:EllipsePointMarker.ToolTip>
<ToolTip Padding="0">
...
</ToolTip>
</sciChart:EllipsePointMarker.ToolTip>
</sciChart:EllipsePointMarker>
But it is not showing.
Is it possible to achieve this?
Try TooltipModifier.UseInterpolation = false. This will stop the TooltipModifier from showing tooltips between data-points.
Also set TooltipModifier.SetIncludeSeries(mountainSeries, false);
This will display tooltips on point-markers only.
You can see this property described in our TooltipModifier Documentation.
Best regards,
Andrew
Please login first to submit.