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)
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)
Please try the line instead:
chart.getCategoryAxis().getAxisLine().setVisible(false);
Let us know if you still find the issue.