Search found 7 matches

by krishnamutthoju
Thu Feb 13, 2014 12:42 pm
Forum: JFreeChart
Topic: Bar chart showing same color for the multiple bars
Replies: 5
Views: 6423

Re: Bar chart showing same color for the multiple bars

Hi All, I have tried by setting my own colours for each index of the renderer when the bar chart has the same values as follows bar1 =10; bar2 = 10; bar3 = 10; for(int index =0 ;index < bars.length; index++){ renderer.setSeriesPaint(index,mycolours[index]); } So from the above code each index of the...
by krishnamutthoju
Thu Jan 30, 2014 11:43 am
Forum: JFreeChart
Topic: How to customize tooltips for each bar
Replies: 1
Views: 2069

How to customize tooltips for each bar

HI All.
I have created bar chars in my application and i want to customize tooltips for each bar based on the axis label. So please help me, if any one knows.


Thanks,
Radhakrishna
by krishnamutthoju
Thu Jan 30, 2014 11:30 am
Forum: JFreeChart
Topic: Bar chart showing same color for the multiple bars
Replies: 5
Views: 6423

Re: Bar chart showing same color for the multiple bars

Hi David, Thanks for your reply. Unfortunately it doesn't work even though after modifying the order for Rowrenderer . Please can you give me any other solution for this issue. NOTE: This issue has been seen without setting any specific colours for each bar.
by krishnamutthoju
Tue Jul 30, 2013 11:14 am
Forum: JFreeChart
Topic: Bar chart showing same color for the multiple bars
Replies: 5
Views: 6423

Re: Bar chart showing same color for the multiple bars

Hi All,
Please help me how to get rid of above issue.
by krishnamutthoju
Mon Dec 24, 2012 12:54 pm
Forum: JFreeChart
Topic: Bar chart showing same color for the multiple bars
Replies: 5
Views: 6423

Bar chart showing same color for the multiple bars

Hi All, I was used following jars to develop jfreecharts in my application. 1) jcommon-1.0.17.jar 2) jfreechart-1.0.14.jar But the only problem with the same bar color, when the multiple bars having the same values. Example: Bar1-10, Bar2-10 , Bar3-10 In the above case three bars having the value 10...
by krishnamutthoju
Wed Sep 26, 2012 2:28 pm
Forum: JFreeChart
Topic: Tooltips are not working with the jfreechart 1.0.14.jar
Replies: 2
Views: 2702

Re: Tooltips are not working with the jfreechart 1.0.14.jar

Finally resolved tooltip issue by changing the fourth parameter to false in below method while creating imagemap

ChartUtilities.writeImageMap(out,filename , info,false);
by krishnamutthoju
Tue Sep 25, 2012 1:16 pm
Forum: JFreeChart
Topic: Tooltips are not working with the jfreechart 1.0.14.jar
Replies: 2
Views: 2702

Tooltips are not working with the jfreechart 1.0.14.jar

Hi,
Tooltips are not working with new jars( jfreechart 1.0.14 and jcommon 1.0.17.jar).Please help me how to get rid of this problem.

I was used following code to generate tooltips.
pieplot.setToolTipGenerator(new StandardPieToolTipGenerator());

Thanks in advance
Radhakrishna.