Search found 3 matches
- Thu Jun 16, 2005 6:22 pm
- Forum: JFreeChart
- Topic: Help me urgent !!!
- Replies: 1
- Views: 3103
Help me urgent !!!
I NEED HELP IN SHOW THE LABEL IN CategoryItemRenderer... I try using : CategoryDataset dataset = DatasetUtilities.createCategoryDataset( eventTypes, monthNames, result); JFreeChart chart = ChartFactory.createStackedBarChart( "", "", "", dataset, org.jfree.chart.plot.PlotOrientation.VERTICAL, true, t...
- Thu Jun 16, 2005 5:02 pm
- Forum: JFreeChart
- Topic: how to show values in bars of a stackedbarchart?
- Replies: 7
- Views: 13846
code
CategoryDataset dataset = DatasetUtilities.createCategoryDataset( eventTypes, monthNames, result); JFreeChart chart = ChartFactory.createStackedBarChart( "", "", "", dataset, org.jfree.chart.plot.PlotOrientation.VERTICAL, true, true, false); chart.getCategoryPlot().setDomainGridlinesVisible(true); c...
- Thu Jun 16, 2005 4:05 pm
- Forum: JFreeChart
- Topic: how to show values in bars of a stackedbarchart?
- Replies: 7
- Views: 13846
Problem
I have problems. I need to show the values of StackedBar using CategoryRenderer... But and dont have success, i implement the CategoryItemRenderer, setLabelGenerator(new StandardCategoryLabelGenerator()) and called setItemLabelsVisible(true) and dont work !!!! This method setLabelGenerator(new Stand...