I'm using JFreeChart to draw data points, and some of them include zero point.
As I know, by default, JFreeChart
does not draw zero points (e.g. (0,0), (1,0), (2,0)
do not show up in a graph).
I have tried setting
plot.setDomainZeroBaselineVisible(true);
plot.setRangeZeroBaselineVisible(true);
But I still cannot see the zero points.
Does anyone know how to show it?
p.s. Unfortunately, I cannot upload the screenshot. It is blocked...