I am having the problem when I am generating Line chart for months Jul-Jun
I have many series..
X- Axis - Months
Y - Axis - Inpatients ,Variance and out patients data (Three lines)
Here is my Code..
XYSeriesCollection dataset = new XYSeriesCollection();
XYSeries inpseries = new XYSeries(Inpatient);
loop begins
inpseries.add(months,value)
Loop Ends
Same thing for rest of those two.
dataset.add(inpseries )
dataset.add(varseries )
dataset.add(outptseries )
The problem I am getting is series object. add is not accepting string,number).
IS there anyway to display for months.
I appreciate your help..