{
IAxis axis = this.chart.getAxisSet().getXAxis(0);
axis.getTitle().setFont(Font.SMALL.getSWTFont());
axis.getTitle().setForeground(GUI.getDisplay().getSystemColor(SWT.COLOR_WHITE)); // wenn wir den auch ausblenden, geht die initiale Skalierung kaputt. Scheint ein Bug zu sein
IGrid grid = axis.getGrid();
grid.setStyle(LineStyle.DOT);
grid.setForeground(gray);
IAxisTick tick = axis.getTick();
tick.setFormat(HBCI.DATEFORMAT);
tick.setForeground(GUI.getDisplay().getSystemColor(SWT.COLOR_DARK_GRAY));
}
// Y-Achse
{
IAxis axis = this.chart.getAxisSet().getYAxis(0);
axis.getTitle().setVisible(false);
IGrid grid = axis.getGrid();
grid.setStyle(LineStyle.DOT);
grid.setForeground(gray);
IAxisTick tick = axis.getTick();
tick.setFormat(HBCI.DECIMALFORMAT);
tick.setForeground(GUI.getDisplay().getSystemColor(SWT.COLOR_DARK_GRAY));
}