org.jfree.chart.renderer.category.BarPainter Java Examples

The following examples show how to use org.jfree.chart.renderer.category.BarPainter. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: StandardChartTheme.java    From astor with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Sets the bar painter.
 *
 * @param painter  the painter (<code>null</code> not permitted).
 *
 * @see #getBarPainter()
 */
public void setBarPainter(BarPainter painter) {
    if (painter == null) {
        throw new IllegalArgumentException("Null 'painter' argument.");
    }
    this.barPainter = painter;
}
 
Example #2
Source File: StandardChartTheme.java    From openstock with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Returns the bar painter.
 *
 * @return The bar painter (never <code>null</code>).
 *
 * @see #setBarPainter(BarPainter)
 */
public BarPainter getBarPainter() {
    return this.barPainter;
}
 
Example #3
Source File: StandardChartTheme.java    From openstock with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Sets the bar painter.
 *
 * @param painter  the painter (<code>null</code> not permitted).
 *
 * @see #getBarPainter()
 */
public void setBarPainter(BarPainter painter) {
    ParamChecks.nullNotPermitted(painter, "painter");
    this.barPainter = painter;
}
 
Example #4
Source File: StandardChartTheme.java    From ccu-historian with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Returns the bar painter.
 *
 * @return The bar painter (never <code>null</code>).
 *
 * @see #setBarPainter(BarPainter)
 */
public BarPainter getBarPainter() {
    return this.barPainter;
}
 
Example #5
Source File: StandardChartTheme.java    From ccu-historian with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Sets the bar painter.
 *
 * @param painter  the painter (<code>null</code> not permitted).
 *
 * @see #getBarPainter()
 */
public void setBarPainter(BarPainter painter) {
    ParamChecks.nullNotPermitted(painter, "painter");
    this.barPainter = painter;
}
 
Example #6
Source File: StandardChartTheme.java    From SIMVA-SoS with Apache License 2.0 2 votes vote down vote up
/**
 * Returns the bar painter.
 *
 * @return The bar painter (never <code>null</code>).
 *
 * @see #setBarPainter(BarPainter)
 */
public BarPainter getBarPainter() {
    return this.barPainter;
}
 
Example #7
Source File: StandardChartTheme.java    From SIMVA-SoS with Apache License 2.0 2 votes vote down vote up
/**
 * Sets the bar painter.
 *
 * @param painter  the painter (<code>null</code> not permitted).
 *
 * @see #getBarPainter()
 */
public void setBarPainter(BarPainter painter) {
    ParamChecks.nullNotPermitted(painter, "painter");
    this.barPainter = painter;
}
 
Example #8
Source File: StandardChartTheme.java    From ECG-Viewer with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns the bar painter.
 *
 * @return The bar painter (never <code>null</code>).
 *
 * @see #setBarPainter(BarPainter)
 */
public BarPainter getBarPainter() {
    return this.barPainter;
}
 
Example #9
Source File: StandardChartTheme.java    From ECG-Viewer with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Sets the bar painter.
 *
 * @param painter  the painter (<code>null</code> not permitted).
 *
 * @see #getBarPainter()
 */
public void setBarPainter(BarPainter painter) {
    ParamChecks.nullNotPermitted(painter, "painter");
    this.barPainter = painter;
}
 
Example #10
Source File: StandardChartTheme.java    From astor with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns the bar painter.
 *
 * @return The bar painter (never <code>null</code>).
 *
 * @see #setBarPainter(BarPainter)
 */
public BarPainter getBarPainter() {
    return this.barPainter;
}
 
Example #11
Source File: StandardChartTheme.java    From buffer_bci with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Returns the bar painter.
 *
 * @return The bar painter (never <code>null</code>).
 *
 * @see #setBarPainter(BarPainter)
 */
public BarPainter getBarPainter() {
    return this.barPainter;
}
 
Example #12
Source File: StandardChartTheme.java    From buffer_bci with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Sets the bar painter.
 *
 * @param painter  the painter (<code>null</code> not permitted).
 *
 * @see #getBarPainter()
 */
public void setBarPainter(BarPainter painter) {
    ParamChecks.nullNotPermitted(painter, "painter");
    this.barPainter = painter;
}
 
Example #13
Source File: StandardChartTheme.java    From buffer_bci with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Returns the bar painter.
 *
 * @return The bar painter (never <code>null</code>).
 *
 * @see #setBarPainter(BarPainter)
 */
public BarPainter getBarPainter() {
    return this.barPainter;
}
 
Example #14
Source File: StandardChartTheme.java    From buffer_bci with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Sets the bar painter.
 *
 * @param painter  the painter (<code>null</code> not permitted).
 *
 * @see #getBarPainter()
 */
public void setBarPainter(BarPainter painter) {
    ParamChecks.nullNotPermitted(painter, "painter");
    this.barPainter = painter;
}