Tabnine Logo
WaterfallBarRenderer.fireChangeEvent
Code IndexAdd Tabnine to your IDE (free)

How to use
fireChangeEvent
method
in
org.jfree.chart.renderer.category.WaterfallBarRenderer

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

origin: org.codehaus.jtstand/jtstand-chart

/**
 * Sets the paint that will be used to draw bars having positive values.
 *
 * @param paint  the paint (<code>null</code> not permitted).
 */
public void setPositiveBarPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null 'paint' argument");
  }
  this.positiveBarPaint = paint;
  fireChangeEvent();
}
origin: org.codehaus.jtstand/jtstand-chart

/**
 * Sets the paint that will be used to draw the first bar and sends a
 * {@link RendererChangeEvent} to all registered listeners.
 *
 * @param paint  the paint (<code>null</code> not permitted).
 */
public void setFirstBarPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null 'paint' argument");
  }
  this.firstBarPaint = paint;
  fireChangeEvent();
}
origin: org.codehaus.jtstand/jtstand-chart

/**
 * Sets the paint that will be used to draw the last bar and sends a
 * {@link RendererChangeEvent} to all registered listeners.
 *
 * @param paint  the paint (<code>null</code> not permitted).
 */
public void setLastBarPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null 'paint' argument");
  }
  this.lastBarPaint = paint;
  fireChangeEvent();
}
origin: org.codehaus.jtstand/jtstand-chart

/**
 * Sets the paint that will be used to draw bars having negative values,
 * and sends a {@link RendererChangeEvent} to all registered listeners.
 *
 * @param paint  the paint (<code>null</code> not permitted).
 */
public void setNegativeBarPaint(Paint paint) {
  if (paint == null) {
    throw new IllegalArgumentException("Null 'paint' argument");
  }
  this.negativeBarPaint = paint;
  fireChangeEvent();
}
origin: jfree/jfreechart

/**
 * Sets the paint that will be used to draw bars having negative values,
 * and sends a {@link RendererChangeEvent} to all registered listeners.
 *
 * @param paint  the paint ({@code null} not permitted).
 */
public void setNegativeBarPaint(Paint paint) {
  Args.nullNotPermitted(paint, "paint");
  this.negativeBarPaint = paint;
  fireChangeEvent();
}
origin: jfree/jfreechart

/**
 * Sets the paint that will be used to draw the last bar and sends a
 * {@link RendererChangeEvent} to all registered listeners.
 *
 * @param paint  the paint ({@code null} not permitted).
 */
public void setLastBarPaint(Paint paint) {
  Args.nullNotPermitted(paint, "paint");
  this.lastBarPaint = paint;
  fireChangeEvent();
}
origin: jfree/jfreechart

/**
 * Sets the paint that will be used to draw the first bar and sends a
 * {@link RendererChangeEvent} to all registered listeners.
 *
 * @param paint  the paint ({@code null} not permitted).
 */
public void setFirstBarPaint(Paint paint) {
  Args.nullNotPermitted(paint, "paint");
  this.firstBarPaint = paint;
  fireChangeEvent();
}
origin: jfree/jfreechart

/**
 * Sets the paint that will be used to draw bars having positive values.
 *
 * @param paint  the paint ({@code null} not permitted).
 */
public void setPositiveBarPaint(Paint paint) {
  Args.nullNotPermitted(paint, "paint");
  this.positiveBarPaint = paint;
  fireChangeEvent();
}
org.jfree.chart.renderer.categoryWaterfallBarRendererfireChangeEvent

Popular methods of WaterfallBarRenderer

  • <init>
    Constructs a new waterfall renderer.
  • setGradientPaintTransformer
  • addItemEntity
  • drawItemLabel
  • getColumnCount
  • getFirstBarPaint
    Returns the paint used to draw the first bar.
  • getGradientPaintTransformer
  • getItemLabelGenerator
  • getItemMargin
  • getItemOutlinePaint
  • getItemOutlineStroke
  • getLastBarPaint
    Returns the paint used to draw the last bar.
  • getItemOutlineStroke,
  • getLastBarPaint,
  • getMinimumBarLength,
  • getNegativeBarPaint,
  • getPositiveBarPaint,
  • isDrawBarOutline,
  • isItemLabelVisible,
  • setMinimumBarLength,
  • setBaseItemLabelFont

Popular in Java

  • Creating JSON documents from java classes using gson
  • setContentView (Activity)
  • scheduleAtFixedRate (Timer)
  • runOnUiThread (Activity)
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • SocketException (java.net)
    This SocketException may be thrown during socket creation or setting options, and is the superclass
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • Collectors (java.util.stream)
  • From CI to AI: The AI layer in your organization
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