Search found 3 matches

by Slix
Mon Oct 14, 2013 11:23 am
Forum: Java
Topic: Overlapping labels after setMinMax() function at teechart ja
Replies: 4
Views: 9125

Re: Overlapping labels after setMinMax() function at teechart ja

Thx, this solved my problem so far. :D
by Slix
Mon Sep 30, 2013 12:32 pm
Forum: Java
Topic: Overlapping labels after setMinMax() function at teechart ja
Replies: 4
Views: 9125

Re: Overlapping labels after setMinMax() function at teechart ja

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 s...
by Slix
Mon Sep 30, 2013 8:39 am
Forum: Java
Topic: Overlapping labels after setMinMax() function at teechart ja
Replies: 4
Views: 9125

Overlapping labels after setMinMax() function at teechart ja

I've 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-i...