Problems when setting right axis
Posted: Wed Mar 12, 2014 3:45 am
Hi, I'm using Xamarin to build an android project.
First, I set ZoomStyles to Inchart and the scale of left axis as following code. It scales well. And when I drag the chart, the left axis lables are dynamical changed, not fixed.
But when I set the axis to right as following code, there are problems.
1. It scales well only when ZoomStyles set to Classic, scales very bad when set to Inchart.
2. When I drag the chart, the right axis lables are fixed, not dynamical changed.
Please help!
First, I set ZoomStyles to Inchart and the scale of left axis as following code. It scales well. And when I drag the chart, the left axis lables are dynamical changed, not fixed.
Code: Select all
mainChart.Zoom.Style = Steema.TeeChart.ZoomStyles.Inchart;
mainChart.Axes.Left.SetMinMax (100, 115);
1. It scales well only when ZoomStyles set to Classic, scales very bad when set to Inchart.
2. When I drag the chart, the right axis lables are fixed, not dynamical changed.
Code: Select all
mainChart.Series [0].VertAxis = VerticalAxis.Right;


mainChart.Axes.Right.SetMinMax (100, 115);