Ver Mensaje Individual
  #1 (permalink)  
Antiguo 16/04/2008, 22:01
Avatar de johnnygomez
johnnygomez
 
Fecha de Ingreso: octubre-2007
Mensajes: 166
Antigüedad: 17 años, 2 meses
Puntos: 0
JFreeChart y netbeans

hola quiero hacer una aplicacion para la facultad y necesito hacer unos graficos, estuve viendo y veo que el JFreeChart es lo que necesito, hay un ejemplo que me viene bien, pero cuando quiero probar para usarlo, me tira error al importar los archivos. El ejemplo puntual es

Código PHP:
import org.jfree.chart.ChartFactory;
import org.jfree.chart.ChartUtilities;
import org.jfree.chart.JFreeChart;
import java.io.File;
import java.io.*;
import org.jfree.data.time.Day;
import org.jfree.data.time.*;
public class 
TimeSeries {
public static 
void main(String[] args) {
// Create a time series chart
org.jfree.data.time.TimeSeries pop = new org.jfree.data.time.TimeSeries(”Linea de Crecimiento”Day.class);
pop.add(new Day(212007), 100);
pop.add(new Day(222007), 150);
pop.add(new Day(232007), 200);
pop.add(new Day(242007), 250);
pop.add(new Day(252007), 300);
pop.add(new Day(262007), 1500);
TimeSeriesCollection dataset = new TimeSeriesCollection();
dataset.addSeries(pop);
JFreeChart chart ChartFactory.createTimeSeriesChart(
“Crecimiento Ubuntu”,
“Fecha”,
“Numero Usuarios”,
dataset,
true,
true,
false);
try {
ChartUtilities.saveChartAsJPEG(new File(/home/jose/Desktop/TimeSeries.jpg”), chart500300);
} catch (
IOException e) {
System.err.println(”Error creando grafico.);
}
}} 
i

inclui los 2 jar jcommon-1.0.12.jar y jfreechart-1.0.9-demo.jar pero los "import" me tiran error todos menos import java.io.File;
import java.io.*;
que estoy haciendo mal?