Dear All,
I am using JFreeChart to plot an XYLine using XYSeries.
i.e:int i=0;
XYSeries series=new XYSeries(temperature);
series.add(i, Integer.parseInt(RTemp));
instead of "i", I want to put a string such that the x-axis would display a string and y-axis would display an integer.
so instead of :
series.add(int, int);
i want to have:
series.add(string, int);
How can i do it?
Thank you