Examples of JRFillMultiAxisPlot


Examples of net.sf.jasperreports.charts.fill.JRFillMultiAxisPlot

    // Create the first axis as the base plot, and then go ahead and create the
    // charts for any additional axes.  Just take the renderer and data series
    // from those charts and add them to the first one.
    Plot mainPlot = null;

    JRFillMultiAxisPlot jrPlot = (JRFillMultiAxisPlot)getPlot();
   
    // create a multi axis hyperlink provider
    MultiAxisChartHyperlinkProvider multiHyperlinkProvider = new MultiAxisChartHyperlinkProvider();
   
    // Generate the main plot from the first axes specified.
    Iterator iter = jrPlot.getAxes().iterator();
    if (iter.hasNext())
    {
      JRFillChartAxis axis = (JRFillChartAxis)iter.next();
      JRFillChart fillChart = axis.getFillChart();
     
View Full Code Here

Examples of net.sf.jasperreports.charts.fill.JRFillMultiAxisPlot

  /**
   *
   */
  public JRMultiAxisPlot getMultiAxisPlot(JRMultiAxisPlot multiAxisPlot)
  {
    JRFillMultiAxisPlot fillMultiAxisPlot = null;

    if (multiAxisPlot != null)
    {
      fillMultiAxisPlot = (JRFillMultiAxisPlot)get(multiAxisPlot);
      if (fillMultiAxisPlot == null)
      {
        fillMultiAxisPlot = new JRFillMultiAxisPlot(multiAxisPlot, this);
      }
    }

    return fillMultiAxisPlot;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.