Search found 2 matches
- Thu Jul 06, 2006 11:30 pm
- Forum: JFreeChart
- Topic: 3D Bar Chart - How To Show Zero Value Item
- Replies: 1
- Views: 3009
perhaps this fits
I had the same problem. You should use the 'Base' Property of the BarRenderer, for example: BarRenderer3D barRenderer = (BarRenderer3D) plot.getRenderer(); barRenderer.setItemMargin(-1.5d); barRenderer.setItemLabelGenerator(new LabelGenerator()); barRenderer.setItemLabelsVisible(true); barRenderer.s...
- Thu Jul 06, 2006 10:23 pm
- Forum: JFreeChart
- Topic: Category label on/above bar?
- Replies: 1
- Views: 2978
not Possible?
Hi mhilpert. JFreeChart jfreechart = ChartFactory.createBarChart3D("Reglas @Por", "", "Incidencias", categorydataset, PlotOrientation.VERTICAL, true, true, false); CategoryPlot categoryplot = jfreechart.getCategoryPlot(); categoryplot.setDomainGridlinesVisible(true); CategoryAxis categoryaxis = cate...