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