Hi,
Is it possible to bind attributes on ChartTrackBallBehavior?
I want to make the trackball customizable at runtime:
<syncfusion:ChartTrackBallBehavior ShowLine="{Binding ChartSettings.TrackballLineVisible}" x:Name="ChartTrackball" />
The "ChartSettings.TrackballLineVisible" is a bool. But the binding does not work (Line can not be enabled/disabled at runtime). At the same time the binding for the label on the PrimaryAxis does work (also bool).
<syncfusion:DateTimeAxis x:Name="PrimaryAxis" ShowTrackBallInfo="{Binding ChartSettings.TrackballTooltipDateTimeAxis}"/>
Is it somehow not possible to make a binding on ChartTrackBallBehavior?
(Even if i bind both on the same bool the ShowTrackBallInfo on the axis works but the ShowLine on the ChartTrackBallBehavior does not)
Regards, Lukas R.