I created a chart with custom axes and a simple line that uses a vertical and a horizontal axis out of them. Next I zoomed in by calling the setAutomatic(false
) and setMinMax(min, max)
method provided by the Axis
class. TeeChart zoomed in, but it behaves different in comparison to a normal zoom-in. It does not rescale the axis labels - why? How to rescale axis labels so that they do not overlap?
After debugging I found out, that after a normal zoom-in the method invalidate() is called next. So I also tried to call doInvalidate()
on my teechart instance, but that didn't help. setMinorTickCount(arg0)
and adjustMinMax()
changed also nothing.
Any idea how to re-scale labels? Thx
Here is how you can reproduce it:
TChart chart = new TChart(parent, 0);
Line series = new Line(chart.getChart());
series.fillSampleValues(100);
chart.getAxes().getBottom().setAutomatic(false);
chart.getAxes().getBottom().setMinMax(0.0, 10.0);
chart.getAxes().getBottom().setMinMax(2.0, 5.0);
I need something like I get, when I scroll after this operations. After a scroll the labels re-scale properly.
Thx