DynamicPDF by ceTe Software

com.cete.dynamicpdf.pageelements.charting.series
Class IndexedBarSeries

java.lang.Object
  extended by com.cete.dynamicpdf.pageelements.charting.PlotAreaElement
      extended by com.cete.dynamicpdf.pageelements.charting.SeriesBase
          extended by com.cete.dynamicpdf.pageelements.charting.series.XYSeries
              extended by com.cete.dynamicpdf.pageelements.charting.series.LegendXYSeries
                  extended by com.cete.dynamicpdf.pageelements.charting.series.BarSeries
                      extended by com.cete.dynamicpdf.pageelements.charting.series.IndexedBarSeries

public class IndexedBarSeries
extends BarSeries

Represents a bar series with indexed axis.

Licensing:
This is a DynamicPDF Generator Enterprise Edition feature. One of the following licenses is required for non-evaluation usage:

View Example


Constructor Summary
IndexedBarSeries(java.lang.String name)
          Initializes a new instance of the IndexedBarSeries class.
IndexedBarSeries(java.lang.String name, Color color)
          Initializes a new instance of the IndexedBarSeries class.
IndexedBarSeries(java.lang.String name, IndexedYAxis indexedYAxis)
          Initializes a new instance of the IndexedBarSeries class.
IndexedBarSeries(java.lang.String name, NumericXAxis numericXAxis)
          Initializes a new instance of the IndexedBarSeries class.
IndexedBarSeries(java.lang.String name, NumericXAxis numericXAxis, IndexedYAxis indexedYAxis)
          Initializes a new instance of the IndexedBarSeries class.
IndexedBarSeries(java.lang.String name, NumericXAxis numericXAxis, IndexedYAxis indexedYAxis, Color color)
          Initializes a new instance of the IndexedBarSeries class.
IndexedBarSeries(java.lang.String name, NumericXAxis numericXAxis, IndexedYAxis indexedYAxis, Color color, float borderWidth)
          Initializes a new instance of the IndexedBarSeries class.
IndexedBarSeries(java.lang.String name, NumericXAxis numericXAxis, IndexedYAxis indexedYAxis, Color color, float borderWidth, Color borderColor)
          Initializes a new instance of the IndexedBarSeries class.
IndexedBarSeries(java.lang.String name, NumericXAxis numericXAxis, IndexedYAxis indexedYAxis, Color color, float borderWidth, Color borderColor, Legend legend)
          Initializes a new instance of the IndexedBarSeries class.
IndexedBarSeries(java.lang.String name, NumericXAxis numericXAxis, IndexedYAxis indexedYAxis, Color color, Legend legend)
          Initializes a new instance of the IndexedBarSeries class.
IndexedBarSeries(java.lang.String name, NumericXAxis numericXAxis, IndexedYAxis indexedYAxis, float borderWidth, Color borderColor)
          Initializes a new instance of the IndexedBarSeries class.
 
Method Summary
 IndexedBarValueList getValues()
          Gets the IndexedBarValueList object contained in the indexed bar series.
 NumericXAxis getXAxis()
          Gets the NumericXAxis object of the series.
 IndexedYAxis getYAxis()
          Gets the IndexedYAxis object of the series.
 
Methods inherited from class com.cete.dynamicpdf.pageelements.charting.series.BarSeries
getBorderColor, getBorderWidth, getDataLabel, getValueFormat, setBorderColor, setBorderWidth, setDataLabel, setValueFormat
 
Methods inherited from class com.cete.dynamicpdf.pageelements.charting.series.LegendXYSeries
getColor, getLegendLabel, getName, setColor
 
Methods inherited from class com.cete.dynamicpdf.pageelements.charting.SeriesBase
getDrawBehindAxis, setDrawBehindAxis
 
Methods inherited from class com.cete.dynamicpdf.pageelements.charting.PlotAreaElement
getLegend, getPlotArea, setLegend, setPlotArea
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IndexedBarSeries

public IndexedBarSeries(java.lang.String name)
Initializes a new instance of the IndexedBarSeries class.

Parameters:
name - Name of the bar series with indexed axis.

IndexedBarSeries

public IndexedBarSeries(java.lang.String name,
                        Color color)
Initializes a new instance of the IndexedBarSeries class.

Parameters:
name - Name of the bar series with indexed axis.
color - Color of the bar series with indexed axis.

IndexedBarSeries

public IndexedBarSeries(java.lang.String name,
                        NumericXAxis numericXAxis,
                        IndexedYAxis indexedYAxis)
Initializes a new instance of the IndexedBarSeries class.

Parameters:
name - Name of the bar series with indexed axis.
numericXAxis - NumericXAxis of the bar series with indexed axis.
indexedYAxis - IndexedYAxis of the bar series with indexed axis.
See Also:
NumericXAxis, IndexedYAxis

IndexedBarSeries

public IndexedBarSeries(java.lang.String name,
                        NumericXAxis numericXAxis)
Initializes a new instance of the IndexedBarSeries class.

Parameters:
name - Name of the bar series with indexed axis.
numericXAxis - NumericXAxis of the bar series with indexed axis..
See Also:
NumericXAxis

IndexedBarSeries

public IndexedBarSeries(java.lang.String name,
                        IndexedYAxis indexedYAxis)
Initializes a new instance of the IndexedBarSeries class.

Parameters:
name - Name of the bar series with indexed axis.
indexedYAxis - IndexedYAxis of the bar series with indexed axis.
See Also:
IndexedYAxis

IndexedBarSeries

public IndexedBarSeries(java.lang.String name,
                        NumericXAxis numericXAxis,
                        IndexedYAxis indexedYAxis,
                        Color color)
Initializes a new instance of the IndexedBarSeries class.

Parameters:
name - Name of the bar series with indexed axis.
numericXAxis - NumericXAxis of the bar series with indexed axis.
indexedYAxis - IndexedYAxis of the bar series with indexed axis.
color - Color of the bar series with indexed axis.
See Also:
NumericXAxis, IndexedYAxis

IndexedBarSeries

public IndexedBarSeries(java.lang.String name,
                        NumericXAxis numericXAxis,
                        IndexedYAxis indexedYAxis,
                        Color color,
                        Legend legend)
Initializes a new instance of the IndexedBarSeries class.

Parameters:
name - Name of the bar series with indexed axis.
numericXAxis - NumericXAxis of the bar series with indexed axis.
indexedYAxis - IndexedYAxis of the bar series with indexed axis.
color - Color of the bar series with indexed axis.
legend - Legend of the bar series with indexed axis.
See Also:
NumericXAxis, IndexedYAxis, Legend

IndexedBarSeries

public IndexedBarSeries(java.lang.String name,
                        NumericXAxis numericXAxis,
                        IndexedYAxis indexedYAxis,
                        Color color,
                        float borderWidth)
Initializes a new instance of the IndexedBarSeries class.

Parameters:
name - Name of the bar series with indexed axis.
numericXAxis - NumericXAxis of the bar series with indexed axis.
indexedYAxis - IndexedYAxis of the bar series with indexed axis.
color - Color of the bar series with indexed axis.
borderWidth - Border width of the bar series with indexed axis.
See Also:
NumericXAxis, IndexedYAxis

IndexedBarSeries

public IndexedBarSeries(java.lang.String name,
                        NumericXAxis numericXAxis,
                        IndexedYAxis indexedYAxis,
                        float borderWidth,
                        Color borderColor)
Initializes a new instance of the IndexedBarSeries class.

Parameters:
name - Name of the bar series with indexed axis.
numericXAxis - NumericXAxis of the bar series with indexed axis.
indexedYAxis - IndexedYAxis of the bar series with indexed axis.
borderWidth - Border width of the bar series with indexed axis.
borderColor - Border Color for border of the bar series with indexed axis.
See Also:
NumericXAxis, IndexedYAxis

IndexedBarSeries

public IndexedBarSeries(java.lang.String name,
                        NumericXAxis numericXAxis,
                        IndexedYAxis indexedYAxis,
                        Color color,
                        float borderWidth,
                        Color borderColor)
Initializes a new instance of the IndexedBarSeries class.

Parameters:
name - Name of the bar series with indexed axis.
numericXAxis - NumericXAxis of the bar series with indexed axis.
indexedYAxis - IndexedYAxis of the bar series with indexed axis.
color - Color of the bar series with indexed axis.
borderWidth - Border width of the bar series with indexed axis.
borderColor - Border Color for border of the bar series with indexed axis.
See Also:
NumericXAxis, IndexedYAxis

IndexedBarSeries

public IndexedBarSeries(java.lang.String name,
                        NumericXAxis numericXAxis,
                        IndexedYAxis indexedYAxis,
                        Color color,
                        float borderWidth,
                        Color borderColor,
                        Legend legend)
Initializes a new instance of the IndexedBarSeries class.

Parameters:
name - Name of the bar series with indexed axis.
numericXAxis - NumericXAxis of the bar series with indexed axis.
indexedYAxis - IndexedYAxis of the bar series with indexed axis.
color - Color of the bar series with indexed axis.
borderWidth - Border width of the bar series with indexed axis.
borderColor - Border Color for border of the bar series with indexed axis.
legend - Legend of the bar series with indexed axis.
See Also:
NumericXAxis, IndexedYAxis, Legend
Method Detail

getValues

public IndexedBarValueList getValues()
Gets the IndexedBarValueList object contained in the indexed bar series.

Returns:
the list of values.
See Also:
IndexedBarValueList

getXAxis

public NumericXAxis getXAxis()
Gets the NumericXAxis object of the series.

Returns:
the x-axis of th series.
See Also:
NumericXAxis

getYAxis

public IndexedYAxis getYAxis()
Gets the IndexedYAxis object of the series.

Returns:
the y-axis of th series.
See Also:
IndexedYAxis

DynamicPDF by ceTe Software

API Reference for DynamicPDF v10.04 for Java generated on September 25, 2019
© Copyright 2019, ceTe Software