Code: Select all
tChart.getAxes().getLeft().setMinimum(0);
tChart.getAxes().getBottom().setMinimum(0);
tChart.getAxes().getRight().setMinimum(0);
tChart.getAxes().getTop().setMinimum(0);
Code: Select all
tChart.getAxes().getLeft().setMinimum(0);
tChart.getAxes().getBottom().setMinimum(0);
tChart.getAxes().getRight().setMinimum(0);
tChart.getAxes().getTop().setMinimum(0);
Code: Select all
com.steema.teechart.styles.Line line1 = new com.steema.teechart.styles.Line(tChart1.getChart());
for (int i = 0; i < 10; i++) {
line1.add(5000 + i* 1000);
}
tChart1.getAxes().getLeft().setAutomaticMinimum(false);
tChart1.getAxes().getLeft().setMinimum(0);
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |