hi
problem is solved..
thanks
Search found 9 matches
- Thu Jul 31, 2008 7:01 am
- Forum: JFreeChart
- Topic: new line character problem in bar chart
- Replies: 1
- Views: 2014
- 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.
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.
- 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
- 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...
- Thu Jun 26, 2008 9:04 am
- Forum: JFreeChart
- Topic: customization of label in the pie chart and bar graph
- Replies: 5
- Views: 5861
- 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
please help me !!!!
i want to customizes my labels in pie chart and bar chart..
how can i do that
- 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+...
- Fri Jun 13, 2008 4:59 am
- Forum: JFreeChart
- Topic: sending chart image in gif format
- Replies: 3
- Views: 3627
- 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...