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