Search found 7 matches
- Fri Mar 28, 2008 4:59 am
- Forum: JFreeChart
- Topic: JSF Chart Creator
- Replies: 89
- Views: 397696
Bug: ChartAxis's rendered="false"
if ChartAxis's rendered="false" is set, the renderer still renderes the chartaxis. <c:chart generateMap="true" id="chart9" datasource="#{myCharts.categoryDataset}" xlabel="Month" ylabel="Paid Amount" type="line" is3d="false" legendBorder="false" legendFontSize="12" startAngle="30"> <c:chartAxis id="...
- Tue Mar 18, 2008 2:08 pm
- Forum: JFreeChart
- Topic: Barchart not starting at zero?
- Replies: 7
- Views: 10161
shamesh_joshi wrote: There's now soln in new version.. but what for the older versions???? One thing that can be done is write your own barchart renderer, add base value and add function calculateBarL0L1(double value) eg: public class MyBarRenderer extends BarRenderer { double base=0; public double...
- Fri Mar 14, 2008 11:19 am
- Forum: JFreeChart
- Topic: JSF Chart Creator
- Replies: 89
- Views: 397696
Adding Secondary Range dataset in Line chart
Hello all, I'm bit confused in using the Chart Creater. The <c:chartAxis> is assumed to add Child component to customize an axis. I tried it with xyline chart as provided in demo. and works fine : <c:chart id="chart2" datasource="#{myBack.firstXYDataset}" xlabel="Month" ylabel="Paid $" type="xyline"...
- Mon Jun 18, 2007 12:02 pm
- Forum: JFreeChart
- Topic: Setting Base for bar chart in version 0.9.16
- Replies: 3
- Views: 5207
Thank you for the support. the problem is solved. It was easier than I thought. Just extends BarRenderer add function calculateBarL0L1 to overwrite setting base. protected double[] calculateBarL0L1(double value) { double lclip = getLowerClip(); double uclip = getUpperClip(); double bb = this.base; i...
- Mon Jun 18, 2007 10:55 am
- Forum: JFreeChart
- Topic: Setting Base for bar chart in version 0.9.16
- Replies: 3
- Views: 5207
- Mon Jun 18, 2007 8:29 am
- Forum: JFreeChart
- Topic: Barchart not starting at zero?
- Replies: 7
- Views: 10161
- Mon Jun 18, 2007 8:20 am
- Forum: JFreeChart
- Topic: Setting Base for bar chart in version 0.9.16
- Replies: 3
- Views: 5207
Setting Base for bar chart in version 0.9.16
Hello all,
I am curently using jfreechart-0.9.16.jar. I have to set base for the bar chart, which i couldn't find how to do. so please anybody suggest me.. I can't upgrade to new version as I have to mend the chart and the chart was already using older version.
Regards,
Shamesh
I am curently using jfreechart-0.9.16.jar. I have to set base for the bar chart, which i couldn't find how to do. so please anybody suggest me.. I can't upgrade to new version as I have to mend the chart and the chart was already using older version.

Regards,
Shamesh