Package net.sf.jasperreports.charts.design

Examples of net.sf.jasperreports.charts.design.JRDesignBubblePlot


        dataset = new JRDesignCategoryDataset(dataset);
        plot = new JRDesignBar3DPlot(plot, this);
        break;
      case CHART_TYPE_BUBBLE:
        dataset = new JRDesignXyzDataset(dataset);
        plot = new JRDesignBubblePlot(plot, this);
        break;
      case CHART_TYPE_CANDLESTICK:
        dataset = new JRDesignHighLowDataset(dataset);
        plot = new JRDesignCandlestickPlot(plot, this);
        break;
View Full Code Here


 
  private static final String ATTRIBUTE_scaleType = "scaleType";
 
  public Object createObject( Attributes attributes ){
    JRChart chart = (JRChart)digester.peek();
    JRDesignBubblePlot plot = (JRDesignBubblePlot)chart.getPlot();
   
   
    ScaleTypeEnum scaleType = ScaleTypeEnum.getByName(attributes.getValue(ATTRIBUTE_scaleType));
    if( scaleType != null ){
      plot.setScaleType( scaleType  );
    }

    return plot;
  }
View Full Code Here

TOP

Related Classes of net.sf.jasperreports.charts.design.JRDesignBubblePlot

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.