change size on the plot in a ScatterPlot

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
droop
Posts: 7
Joined: Fri Feb 01, 2008 11:01 am

change size on the plot in a ScatterPlot

Post by droop » Tue Mar 04, 2008 3:48 pm

I like to change the size on the plot. How can I do? I have try to find a solution the whole day and now my hope are to some of you.

The following code is the basic stuff for my chart.

Please
/Mike



JFreeChart chart = ChartFactory.createScatterPlot( //skapar diagram
"Scatter-plot diagram", // chart title
"X", // x axis label
"Y", // y axis label
data, // data
PlotOrientation.VERTICAL,
true, // include legend
true, // tooltips
false // urls
);

Locked