1 32 33 package it.businesslogic.ireport.chart; 34 35 39 public class LineChart extends Chart { 40 41 42 public LineChart() { 43 44 setName("Line"); 45 setChartImage(new javax.swing.ImageIcon ( getClass().getResource("/it/businesslogic/ireport/icons/charts/line_big.png")).getImage()); 46 setDataset( new CategoryDataset()); 47 setPlot( new LinePlot()); 48 } 49 50 public Chart cloneBaseChart() 51 { 52 return new LineChart(); 53 } 54 } 55 | Popular Tags |