Search found 3 matches

by prakash.parvath
Tue May 12, 2009 7:54 am
Forum: JFreeChart
Topic: values on top of bars in barchart ? possible ?
Replies: 3
Views: 10327

Re: values on top of bars in barchart ? possible ?

thanks i got it using :

Code: Select all

renderer.setSeriesItemLabelGenerator(0, 
                                                       new StandardCategoryItemLabelGenerator("        {2}",NumberFormat.getCurrencyInstance(Locale.US))); 
				
renderer.setSeriesItemLabelsVisible(0, true);
~Prakash
by prakash.parvath
Tue May 12, 2009 6:55 am
Forum: JFreeChart
Topic: values on top of bars in barchart ? possible ?
Replies: 3
Views: 10327

values on top of bars in barchart ? possible ?

Hi
i just want to know is it possible to display values (as labels) on top of every bar in a bar chart like below
Image

please let me know, as its a mandatory requirement for me.

~Prakash
by prakash.parvath
Sat May 09, 2009 10:11 am
Forum: JFreeChart
Topic: Query on customizing BarChart
Replies: 0
Views: 1595

Query on customizing BarChart

Hi is it possible in jfreechart to trim the LHS labels and range values of a barchart and Title ? is it possible in jfreechart to have different colors for bars in different series (i know its possible for diff categories) and also is it possible to display the values of bars (items) on top of it, j...