Package net.sf.jasperreports.charts.base

Examples of net.sf.jasperreports.charts.base.JRBaseAreaPlot


  /**
   *
   */
  public JRAreaPlot getAreaPlot(JRAreaPlot areaPlot) {
    JRBaseAreaPlot baseAreaPlot = null;

    if (areaPlot != null)
    {
      baseAreaPlot = (JRBaseAreaPlot)get(areaPlot);
      if (baseAreaPlot == null)
      {
        baseAreaPlot = new JRBaseAreaPlot(areaPlot, this);
      }
    }

    return baseAreaPlot;
  }
View Full Code Here

TOP

Related Classes of net.sf.jasperreports.charts.base.JRBaseAreaPlot

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.