I have added Histogram support to cewolf. I don't know
how to make a patch, however, I'll list the code here:
package: de.laures.cewolf.taglib :
-------------------------------------
ChartTypes.java:
Line 64: add:
,"histogram"
-------------------------------------
ChartConstants.java:
Line 60: add:
int HISTOGRAM = 27;
-------------------------------------
CewolfChartFactory..java:
Line 153: add:
case HISTOGRAM :
check(data, IntervalXYDataset.class, HISTOGRAM);
return ChartFactory.createHistogram(title,
xAxisLabel, yAxisLabel, (IntervalXYDataset) data,
PlotOrientation.VERTICAL, true, false, false);
-------------------------------------
After doing all this, you can specify type="histogram"
and crate a HistogramDataset, I've tested it only
locally though I suppose it's not that big a change.
Logged In: NO
thank you!
I don't know method of HistogramDataset.
please let me know it....
I try to test below
"HistogramDataset hs = new HistogramDataset();
hs.hs.addSeries("10",5,8,15);" ---> error
my e-mail address: ckg111@postown.net