I am new to the JFreeChart environment.
I am trying to plot a Line chart having 3 series.
If I use numeric values for X axis values, I am good.
eg
XYSeries series1 = new XYSeries("Actual");
series1.add(4.0, 5.0);
The problem arises when I want to use String values for X co-ordinates.
Can anyone help me out on this ?
Thanks in advance

Regards