Examples of Plot


Examples of org.jfree.chart.plot.Plot

        IGfrValueLinearAndLogarithmic
{
   @Override
   public boolean isAxisXLogarithmic()
   {
      Plot plt = super.getPlot();
     
      if (plt != null)
         return ((IGfrValueLinearAndLogarithmic) plt).isAxisXLogarithmic();
     
      return false;
View Full Code Here

Examples of org.jfree.chart.plot.Plot

   }

   @Override
   public void setAxisXLogarithmic(boolean bln)
   {
      Plot plt = super.getPlot();
     
      if (plt != null)
         ((IGfrValueLinearAndLogarithmic) plt).setAxisXLogarithmic(bln);
   }
View Full Code Here

Examples of org.jfree.chart.plot.Plot

        IGfrHandlerLifeCycleObject
{
   @Override
   public boolean init()
   {
      Plot plt = super.getPlot();
     
      if (! ((IGfrHandlerLifeCycleObject)plt).init())
         return false;
     
      return true;
View Full Code Here

Examples of org.jfree.chart.plot.Plot

   }
  
   @Override
   public void destroy()
   {
      Plot plt = super.getPlot();
     
      if (plt != null)
         ((IGfrHandlerLifeCycleObject)plt).destroy();
   }
View Full Code Here

Examples of org.jfree.chart.plot.Plot

   }

   @Override
   public void setUnitDepthMeter(boolean bln)
   {
      Plot plt = super.getPlot();
     
      if (plt != null)
         ((IGfrDepthMetersAndFeet) plt).setUnitDepthMeter(bln);
   }
View Full Code Here

Examples of org.jfree.chart.plot.Plot

   // beg tempo
   public void updateSeriesNameChanged(
           String strOldValue,
           String strNewValue)
   {
      Plot plt = super.getPlot();

      if (plt instanceof GfrCombinedDomainXYPlotAbs)
         ((GfrCombinedDomainXYPlotAbs) plt).updateSeriesNameChanged(
                 strOldValue,
                 strNewValue);
View Full Code Here

Examples of org.jfree.chart.plot.Plot

      super.getDefaultCell().setPadding(5);


      chart.setBackgroundPaint(new Color(255, 255, 255));

      Plot plot = chart.getPlot();

      plot.setBackgroundPaint(new Color(255, 255, 255));


      if (plot instanceof CombinedDomainXYPlot)
      {
         List<XYPlot> lstPlot = ((List<XYPlot>) ((CombinedDomainXYPlot) plot).getSubplots());
View Full Code Here

Examples of org.jfree.chart.plot.Plot

    chart.getTitle().setFont(Font.decode("Verdana BOLD 12"));
    chart.setAntiAlias(true);
    chart.setBorderVisible(true);
    chart.setBackgroundPaint(new Color(241, 241, 241));

    Plot plot = chart.getPlot();

    plot.setDrawingSupplier(getDrawingSupplier());
    plot.setBackgroundPaint(new GradientPaint(0, 0, Color.white, 640, 480,
        new Color(200, 200, 200)));

    if (plot instanceof XYPlot) {
      XYPlot xyplot = (XYPlot) plot;
      Font labelFont = Font.decode("Verdana PLAIN");
View Full Code Here

Examples of org.jfree.chart.plot.Plot

        }

        chart.setBackgroundPaint(this.chartBackgroundPaint);

        // now process the plot if there is one
        Plot plot = chart.getPlot();
        if (plot != null) {
            applyToPlot(plot);
        }
    }
View Full Code Here

Examples of org.jfree.chart.plot.Plot

      this.chart = chart;
      if (chart != null)
      {
         this.chart.addChangeListener(this);
         this.chart.addProgressListener(this);
         Plot plot = chart.getPlot();
         this.domainZoomable = false;
         this.rangeZoomable = false;
         if (plot instanceof Zoomable)
         {
            Zoomable z = (Zoomable) plot;
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.