Ciao a tutti... sto tentando di creare un semplice grafico che poi vorrei unire ad una gui e rappresentare i dati man mano che vengono rilevati da una scheda di acquisizione...
Ho provato a fare un semplice programma ma NON VA...!
Sapreste aiutarmi?

codice:
package io.programmo;   import java.io.File; import java.io.IOException;  import org.jfree.chart.ChartFactory; import org.jfree.chart.ChartUtilities; import org.jfree.chart.JFreeChart; import org.jfree.chart.plot.PlotOrientation; import org.jfree.data.xy.XYSeries; import org.jfree.data.xy.XYSeriesCollection;  public class XYChartExample { 	 public static void main(String[] args){ 	// Create a simple XY chart 	XYSeries series = new XYSeries("XYGraph"); 	series.add(1,1); 	series.add(1,2); 	series.add(2,1); 	series.add(3,9); 	series.add(4,10); 	// Add the series to your data set 	XYSeriesCollection dataset = new XYSeriesCollection(); 	dataset.addSeries(series); 	// Generate the graph 	JFreeChart chart = ChartFactory.createXYLineChart( 	"XY Chart", // Title 	"x-axis", // x-axis Label 	"y-axis", // y-axis Label 	dataset, // Dataset 	PlotOrientation.VERTICAL, // Plot Orientation 	true, // Show Legend 	true, // Use tooltips 	false // Configure chart to generate URLs? 	); 	 try { 	ChartUtilities.saveChartAsJPEG(new File("C:\\chart.jpg"), chart, 500, 300); 	} catch (IOException e) { 	System.err.println("Problem occurred creating chart."); 	} 	}}