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);