Search found 25 matches

by mahesh_burgu
Tue Nov 27, 2007 8:13 am
Forum: JFreeChart
Topic: chart blurred in the Html Page
Replies: 4
Views: 5633

try this

PiePlot plot = (PiePlot) chart.getPlot();
plot.setCircular(true);
by mahesh_burgu
Tue Nov 27, 2007 8:11 am
Forum: JFreeChart
Topic: how to display LineChart X axis coordinate lables vertically
Replies: 3
Views: 5016

try this

ValueAxis rangeAxis = ((CategoryPlot) plot).getRangeAxis();
CategoryAxis domainAxis = ((CategoryPlot) plot).getDomainAxis();
domainAxis.setCategoryLabelPositions(CategoryLabelPositions.UP_90);
by mahesh_burgu
Tue Nov 20, 2007 8:20 am
Forum: JFreeChart
Topic: chart blurred in the Html Page
Replies: 4
Views: 5633

Try this method
saveChartAsJPEG(java.io.File file, float quality, JFreeChart chart, int width, int height) ;

example :
ChartUtilities.saveChartAsJPEG(new File(filelocation), 1.0f, chart, 600, 450);
by mahesh_burgu
Tue Nov 06, 2007 9:39 pm
Forum: JFreeChart
Topic: How to start the line graph margin value with user value
Replies: 6
Views: 6996

can u please send me some sample code
by mahesh_burgu
Tue Nov 06, 2007 7:13 pm
Forum: JFreeChart
Topic: How to start the line graph margin value with user value
Replies: 6
Views: 6996

Thanx for the reply....

But my X values are Strings not double...What to do know?
by mahesh_burgu
Tue Nov 06, 2007 5:12 pm
Forum: JFreeChart
Topic: How to start the line graph margin value with user value
Replies: 6
Views: 6996

please help me
by mahesh_burgu
Tue Nov 06, 2007 3:55 pm
Forum: JFreeChart
Topic: How to start the line graph margin value with user value
Replies: 6
Views: 6996

How to start the line graph margin value with user value

How to start the line graph margin value with user defined value instead of 0(zero by default)at the intersection of X and Y axis
by mahesh_burgu
Fri Nov 02, 2007 11:37 am
Forum: JFreeChart
Topic: Intersection of both X and Y axis
Replies: 4
Views: 6257

I think u did not get the question 30 | | 20 | | 10 | | 0 |__________________________________ time1 time2 time3 time4 time5 I want the figure to be like this as below.....time1 should be the first point in Yaxis(in place of zero)..... 30 | | 20 | | 10 | | 0 |__________________________________ time1 ...
by mahesh_burgu
Fri Nov 02, 2007 10:20 am
Forum: JFreeChart
Topic: Intersection of both X and Y axis
Replies: 4
Views: 6257

is any one there to help me??
by mahesh_burgu
Wed Oct 31, 2007 10:05 pm
Forum: JFreeChart
Topic: Intersection of both X and Y axis
Replies: 4
Views: 6257

is the question clear?????
by mahesh_burgu
Wed Oct 31, 2007 9:37 pm
Forum: JFreeChart
Topic: Intersection of both X and Y axis
Replies: 4
Views: 6257

Intersection of both X and Y axis

i have a line chart with X axis as String values and Y axis as double values,intersection of both AXES is 0(by default). How can i start the intersection point starting from my String value instead of 0.

Its urgent....
Any help is greatly appreciated....
by mahesh_burgu
Wed Oct 31, 2007 4:40 pm
Forum: JFreeChart
Topic: how to display LineChart X axis lables vertically
Replies: 4
Views: 7319

i got the solution.......thanx david


final ValueAxis rangeAxis = ((CategoryPlot) plot).getRangeAxis();
CategoryAxis domainAxis = ((CategoryPlot) plot).getDomainAxis();
domainAxis.setCategoryLabelPositions(CategoryLabelPositions.UP_90);
by mahesh_burgu
Wed Oct 31, 2007 4:27 pm
Forum: JFreeChart
Topic: how to display LineChart X axis lables vertically
Replies: 4
Views: 7319

thanx for quick reply.....but i am nowhere using CategoryAxis..... here is my code............ import java.awt.BasicStroke; import java.awt.Color; import java.awt.Dimension; import org.jfree.chart.ChartFactory; import org.jfree.chart.ChartPanel; import org.jfree.chart.JFreeChart; import org.jfree.ch...
by mahesh_burgu
Wed Oct 31, 2007 2:30 pm
Forum: JFreeChart
Topic: how to display LineChart X axis lables vertically
Replies: 4
Views: 7319

is there any one to help me
by mahesh_burgu
Wed Oct 31, 2007 2:16 am
Forum: JFreeChart
Topic: how to display LineChart X axis lables vertically
Replies: 4
Views: 7319

how to display LineChart X axis lables vertically

I have generated a line graph and a scatter plot......i want to display the X axis labels vertically(horizontal by default) as the lables to be displayed are lengthy.....can some one tell me how to do this