Package net.sf.jasperreports.charts.base

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


  /**
   *
   */
  public JRPie3DPlot getPie3DPlot(JRPie3DPlot pie3DPlot)
  {
    JRBasePie3DPlot basePie3DPlot = null;

    if (pie3DPlot != null)
    {
      basePie3DPlot = (JRBasePie3DPlot)get(pie3DPlot);
      if (basePie3DPlot == null)
      {
        basePie3DPlot = new JRBasePie3DPlot(pie3DPlot, this);
      }
    }

    return basePie3DPlot;
  }
View Full Code Here

TOP

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

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.