Codota Logo
WaterfallBarRenderer.setMinimumBarLength
Code IndexAdd Codota to your IDE (free)

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

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

  • Common ways to obtain WaterfallBarRenderer
private void myMethod () {
WaterfallBarRenderer w =
  • Codota Iconnew WaterfallBarRenderer()
  • Smart code suggestions by Codota
}
origin: org.codehaus.jtstand/jtstand-chart

setGradientPaintTransformer(new StandardGradientPaintTransformer(
    GradientPaintTransformType.CENTER_VERTICAL));
setMinimumBarLength(1.0);
origin: jfree/jfreechart

/**
 * Constructs a new waterfall renderer.
 *
 * @param firstBarPaint  the color of the first bar ({@code null} not
 *                       permitted).
 * @param positiveBarPaint  the color for bars with positive values
 *                          ({@code null} not permitted).
 * @param negativeBarPaint  the color for bars with negative values
 *                          ({@code null} not permitted).
 * @param lastBarPaint  the color of the last bar ({@code null} not
 *                      permitted).
 */
public WaterfallBarRenderer(Paint firstBarPaint, Paint positiveBarPaint,
    Paint negativeBarPaint, Paint lastBarPaint) {
  super();
  Args.nullNotPermitted(firstBarPaint, "firstBarPaint");
  Args.nullNotPermitted(positiveBarPaint, "positiveBarPaint");
  Args.nullNotPermitted(negativeBarPaint, "negativeBarPaint");
  Args.nullNotPermitted(lastBarPaint, "lastBarPaint");
  this.firstBarPaint = firstBarPaint;
  this.lastBarPaint = lastBarPaint;
  this.positiveBarPaint = positiveBarPaint;
  this.negativeBarPaint = negativeBarPaint;
  setGradientPaintTransformer(new StandardGradientPaintTransformer(
      GradientPaintTransformType.CENTER_VERTICAL));
  setMinimumBarLength(1.0);
}
org.jfree.chart.renderer.categoryWaterfallBarRenderersetMinimumBarLength

Popular methods of WaterfallBarRenderer

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

Popular in Java

  • Finding current android device location
  • getSystemService (Context)
  • onCreateOptionsMenu (Activity)
  • findViewById (Activity)
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate(i
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • Set (java.util)
    A collection that contains no duplicate elements. More formally, sets contain no pair of elements e1
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now