congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
XYAreaRenderer.fireChangeEvent
Code IndexAdd Tabnine to your IDE (free)

How to use
fireChangeEvent
method
in
org.jfree.chart.renderer.xy.XYAreaRenderer

Best Java code snippets using org.jfree.chart.renderer.xy.XYAreaRenderer.fireChangeEvent (Showing top 8 results out of 315)

origin: jfree/jfreechart

/**
 * Sets a flag that controls whether or not outlines of the areas are drawn
 * and sends a {@link RendererChangeEvent} to all registered listeners.
 *
 * @param show  the flag.
 *
 * @see #isOutline()
 */
public void setOutline(boolean show) {
  this.showOutline = show;
  fireChangeEvent();
}
origin: jfree/jfreechart

/**
 * Sets the flag that controls whether or not the series fill paint is
 * used to fill the area under the line and sends a
 * {@link RendererChangeEvent} to all listeners.
 *
 * @param use  the new flag value.
 *
 * @since 1.0.14
 */
public void setUseFillPaint(boolean use) {
  this.useFillPaint = use;
  fireChangeEvent();
}
origin: org.codehaus.jtstand/jtstand-chart

/**
 * Sets a flag that controls whether or not outlines of the areas are drawn
 * and sends a {@link RendererChangeEvent} to all registered listeners.
 *
 * @param show  the flag.
 *
 * @see #isOutline()
 */
public void setOutline(boolean show) {
  this.showOutline = show;
  fireChangeEvent();
}
origin: org.codehaus.jtstand/jtstand-chart

/**
 * Sets the flag that controls whether or not the series fill paint is
 * used to fill the area under the line and sends a
 * {@link RendererChangeEvent} to all listeners.
 *
 * @param use  the new flag value.
 *
 * @since 1.0.14
 */
public void setUseFillPaint(boolean use) {
  this.useFillPaint = use;
  fireChangeEvent();
}
origin: org.codehaus.jtstand/jtstand-chart

/**
 * Sets the shape used as an area in each legend item and sends a
 * {@link RendererChangeEvent} to all registered listeners.
 *
 * @param area  the area (<code>null</code> not permitted).
 */
public void setLegendArea(Shape area) {
  if (area == null) {
    throw new IllegalArgumentException("Null 'area' argument.");
  }
  this.legendArea = area;
  fireChangeEvent();
}
origin: org.codehaus.jtstand/jtstand-chart

/**
 * Sets the gradient paint transformer and sends a
 * {@link RendererChangeEvent} to all registered listeners.
 *
 * @param transformer  the transformer (<code>null</code> not permitted).
 *
 * @since 1.0.14
 */
public void setGradientTransformer(GradientPaintTransformer transformer) {
  if (transformer == null) {
    throw new IllegalArgumentException("Null 'transformer' argument.");
  }
  this.gradientTransformer = transformer;
  fireChangeEvent();
}
origin: jfree/jfreechart

/**
 * Sets the shape used as an area in each legend item and sends a
 * {@link RendererChangeEvent} to all registered listeners.
 *
 * @param area  the area ({@code null} not permitted).
 */
public void setLegendArea(Shape area) {
  Args.nullNotPermitted(area, "area");
  this.legendArea = area;
  fireChangeEvent();
}
origin: jfree/jfreechart

/**
 * Sets the gradient paint transformer and sends a
 * {@link RendererChangeEvent} to all registered listeners.
 *
 * @param transformer  the transformer ({@code null} not permitted).
 *
 * @since 1.0.14
 */
public void setGradientTransformer(GradientPaintTransformer transformer) {
  Args.nullNotPermitted(transformer, "transformer");
  this.gradientTransformer = transformer;
  fireChangeEvent();
}
org.jfree.chart.renderer.xyXYAreaRendererfireChangeEvent

Popular methods of XYAreaRenderer

  • <init>
    Constructs a new renderer. To specify the type of renderer, use one of the constants: SHAPES, LINES,
  • addEntity
  • clone
    Returns a clone of the renderer.
  • equals
    Tests this renderer for equality with an arbitrary object.
  • getItemPaint
  • getItemShape
  • getItemStroke
  • getItemVisible
  • getLegendItemLabelGenerator
  • getLegendItemToolTipGenerator
  • getLegendItemURLGenerator
  • getPlot
  • getLegendItemURLGenerator,
  • getPlot,
  • getPlotArea,
  • getPlotLines,
  • getPlotShapes,
  • isOutline,
  • lookupLegendTextFont,
  • lookupLegendTextPaint,
  • lookupSeriesFillPaint

Popular in Java

  • Reactive rest calls using spring rest template
  • putExtra (Intent)
  • addToBackStack (FragmentTransaction)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • Top Vim plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now