0

I have a primefaces line chart that appears between the graph series its values. I followed the primefaces documentation, but instead of showing the "LinearChart", it shows "CategoryChart" I need to disable these labels, how do I do this? Below image of my chart.

line graphic - I want to remove the labels that are embedded in the graph lines

1 Answers1

1

I solved the problem! There was the following code in my method ...

lcm.setShowPointLabels(true); // lcm is LineCharModel

It made appear the labels in line chart.