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