Package org.jfree.chart.event

Examples of org.jfree.chart.event.AxisChangeEvent


         {
            autoAdjustRange();
         }
         if (notify)
         {
            notifyListeners(new AxisChangeEvent(this));
         }
      }

   }
View Full Code Here


      if (range == null)
      {
         throw new IllegalArgumentException("Null 'range' argument.");
      }
      this.defaultAutoRange = range;
      notifyListeners(new AxisChangeEvent(this));
   }
View Full Code Here

      this.lowerMargin = margin;
      if (isAutoRange())
      {
         autoAdjustRange();
      }
      notifyListeners(new AxisChangeEvent(this));
   }
View Full Code Here

      this.upperMargin = margin;
      if (isAutoRange())
      {
         autoAdjustRange();
      }
      notifyListeners(new AxisChangeEvent(this));
   }
View Full Code Here

      this.fixedAutoRange = length;
      if (isAutoRange())
      {
         autoAdjustRange();
      }
      notifyListeners(new AxisChangeEvent(this));
   }
View Full Code Here

         this.autoRange = false;
      }
      this.range = range;
      if (notify)
      {
         notifyListeners(new AxisChangeEvent(this));
      }
   }
View Full Code Here

      if (this.autoTickUnitSelection != flag)
      {
         this.autoTickUnitSelection = flag;
         if (notify)
         {
            notifyListeners(new AxisChangeEvent(this));
         }
      }
   }
View Full Code Here

    * @see #getStandardTickUnits()
    */
   public void setStandardTickUnits(TickUnitSource source)
   {
      this.standardTickUnits = source;
      notifyListeners(new AxisChangeEvent(this));
   }
View Full Code Here

    * @since 1.0.12
    */
   public void setMinorTickCount(int count)
   {
      this.minorTickCount = count;
      notifyListeners(new AxisChangeEvent(this));
   }
View Full Code Here

     */
    public void setFirst(RegularTimePeriod first) {
        ParamChecks.nullNotPermitted(first, "first");
        this.first = first;
        this.first.peg(this.calendar);
        notifyListeners(new AxisChangeEvent(this));
    }
View Full Code Here

TOP

Related Classes of org.jfree.chart.event.AxisChangeEvent

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.