Package net.sf.jasperreports.charts.design

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


      case CHART_TYPE_METER:
        dataset = new JRDesignValueDataset(dataset);
        plot = new JRDesignMeterPlot(plot, this);
        break;
      case CHART_TYPE_MULTI_AXIS:
        plot = new JRDesignMultiAxisPlot(plot, this);
        dataset = null;
        break;
      case CHART_TYPE_PIE:
        dataset = new JRDesignPieDataset(dataset);
        plot = new JRDesignPiePlot(plot, this);
View Full Code Here


   *
   */
  public Object createObject(Attributes atts) throws JRException
  {
    JRDesignChart chart = (JRDesignChart)digester.peek();
    JRDesignMultiAxisPlot multiAxisPlot = (JRDesignMultiAxisPlot)chart.getPlot();
    multiAxisPlot.setChart(chart);


    return multiAxisPlot;
  }
View Full Code Here

TOP

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

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.