Tabnine Logo
WaterfallBarRenderer.setMinimumBarLength
Code IndexAdd Tabnine 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)

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

  • Making http post requests using okhttp
  • scheduleAtFixedRate (Timer)
  • addToBackStack (FragmentTransaction)
  • getSharedPreferences (Context)
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • Top PhpStorm 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