I have dynamically created and added series on my chart. Each of these series has its own vertical axis which is created in the following way:
I have vertical and horizontal zooming setup for my chart in my xaml:
Why do I not see zooming on my vertical axes?
Is there something else I can setup when I dynamically create the axis?
LinearAxis linearAxis = new LinearAxis { Title = "Violet Bar Axis", Maximum = maxValue + 1 };
barSeries.VerticalAxis = linearAxis;I have vertical and horizontal zooming setup for my chart in my xaml:
<Controls:RadCartesianChart.Behaviors> <ChartView:ChartPanAndZoomBehavior ZoomMode="Both" PanMode="Both" /> <ChartView:ChartTrackBallBehavior ShowIntersectionPoints="True" ShowTrackInfo="True" TrackInfoUpdated="ChartTrackBallBehavior_TrackInfoUpdated"/></Controls:RadCartesianChart.Behaviors>Why do I not see zooming on my vertical axes?
Is there something else I can setup when I dynamically create the axis?