Remove Line ChartAxis

Hi,
I would like to remove the line next to the labels.

	chart.getValueAxis().getAxisLine().setVisible(false);

This code removes the wrong line

ExpectedOutput.zip (16.7 KB)

@Blegork,

Please try the line instead:
chart.getCategoryAxis().getAxisLine().setVisible(false);

Let us know if you still find the issue.