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
);