CategoryAxis labels to the bottom of the chart?

I have a chart with negatives values so the CategoryAxis is placed in the PlotArea but i want the labels to be in the bottom of the chart, i only want a line on 0 in the PlotArea. Is it possible ?

Hi,

You can set the position of the axis' tick mark labels.Just as following codes :

categoryAxis.setTickLabelPosition(TickLabelPositionType.LOW);

Ok, great ! Sorry i haven’t seen it !