Search found 9 matches

by kapilkaps83
Thu Jul 31, 2008 7:01 am
Forum: JFreeChart
Topic: new line character problem in bar chart
Replies: 1
Views: 2014

hi
problem is solved..
thanks
by kapilkaps83
Wed Jul 30, 2008 9:30 am
Forum: JFreeChart
Topic: new line character problem in bar chart
Replies: 1
Views: 2014

new line character problem in bar chart

Hi All


when i create dataset for bar chart like

String title = "room";

barDataset.addValue(26, " ", title+"="+26+"票");

My label displays like

room=26票

now i want it to display like

room
26票


i try using \r\n inplace of = but cant able to display like this. will \r\n work in this example.
by kapilkaps83
Fri Jun 27, 2008 7:15 am
Forum: JFreeChart
Topic: displaying value in bar chart as a percentage of tatal value
Replies: 2
Views: 3064

hi all

i just want to plot bar chart whose y-axis is 0% - 100% how lager my values are but graph should have remain or calculated as a percentage of total.

Please suggest..
by kapilkaps83
Fri Jun 27, 2008 4:58 am
Forum: JFreeChart
Topic: customization of label in the pie chart and bar graph
Replies: 5
Views: 5861

hi david.gilbert i have generated a simple bar graph ( not category plot) . i simply want to display a label with some message below each bar.. the sample dataset used by me is dataset.addValue(8, 1回, ""); dataset.addValue(4, 2回, ""); dataset.addValue(9, 3回, ""); dataset.addValue(5, 4回, ""); dataset...
by kapilkaps83
Thu Jun 26, 2008 9:04 am
Forum: JFreeChart
Topic: customization of label in the pie chart and bar graph
Replies: 5
Views: 5861

Thanks
by kapilkaps83
Thu Jun 26, 2008 6:22 am
Forum: JFreeChart
Topic: customization of label in the pie chart and bar graph
Replies: 5
Views: 5861

customization of label in the pie chart and bar graph

Hi

please help me !!!!

i want to customizes my labels in pie chart and bar chart..
how can i do that
by kapilkaps83
Thu Jun 26, 2008 4:54 am
Forum: JFreeChart
Topic: displaying value in bar chart as a percentage of tatal value
Replies: 2
Views: 3064

displaying value in bar chart as a percentage of tatal value

HI i want to display range axis as a percentage of total value. for example : if i have values as 20 ,40 ,80 ,200 ,60 then the bar chart display Y-axis as -- (20/200)*100 = 10 (40/200)*100 = 20 (80/200)*100 = 40 (200/200)*100 = 100 (60/200)*100 = 30 Also i want to display them as : total = 20+40+80+...
by kapilkaps83
Fri Jun 13, 2008 4:59 am
Forum: JFreeChart
Topic: sending chart image in gif format
Replies: 3
Views: 3627

Actually in japan we have three service providers therefore as per their standards one of them only display gif images only.

i think of using GIfEncoder but dont know how to use

can u help?
by kapilkaps83
Fri Jun 13, 2008 4:15 am
Forum: JFreeChart
Topic: sending chart image in gif format
Replies: 3
Views: 3627

sending chart image in gif format

hi i have able to send jpeg,png formats on the browser but for mobile application i need to send it in gif format. the code part is JFreeChart chart = ChartFactory.createPieChart(Title,dataset,false,false); response.setContentType("image/png"); ChartUtilities.writeChartAsPNG(out, chart, 400, 300); h...