DynamicPDF by ceTe Software

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

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.ColumnSeries
                      extended by com.cete.dynamicpdf.pageelements.charting.series.IndexedColumnSeries

public class IndexedColumnSeries
extends ColumnSeries

Represents a column 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
IndexedColumnSeries(java.lang.String name)
          Initializes a new instance of the IndexedColumnSeries class.
IndexedColumnSeries(java.lang.String name, Color color)
          Initializes a new instance of the IndexedColumnSeries class.
IndexedColumnSeries(java.lang.String name, IndexedXAxis indexedXAxis)
          Initializes a new instance of the IndexedColumnSeries class.
IndexedColumnSeries(java.lang.String name, IndexedXAxis indexedXAxis, NumericYAxis numericYAxis)
          Initializes a new instance of the IndexedColumnSeries class.
IndexedColumnSeries(java.lang.String name, IndexedXAxis indexedXAxis, NumericYAxis numericYAxis, Color color)
          Initializes a new instance of the IndexedColumnSeries class.
IndexedColumnSeries(java.lang.String name, IndexedXAxis indexedXAxis, NumericYAxis numericYAxis, Color color, float borderWidth)
          Initializes a new instance of the IndexedColumnSeries class.
IndexedColumnSeries(java.lang.String name, IndexedXAxis indexedXAxis, NumericYAxis numericYAxis, Color color, float borderWidth, Color borderColor)
          Initializes a new instance of the IndexedColumnSeries class.
IndexedColumnSeries(java.lang.String name, IndexedXAxis indexedXAxis, NumericYAxis numericYAxis, Color color, float borderWidth, Color borderColor, Legend legend)
          Initializes a new instance of the IndexedColumnSeries class.
IndexedColumnSeries(java.lang.String name, IndexedXAxis indexedXAxis, NumericYAxis numericYAxis, Color color, Legend legend)
          Initializes a new instance of the IndexedColumnSeries class.
IndexedColumnSeries(java.lang.String name, IndexedXAxis indexedXAxis, NumericYAxis numericYAxis, float borderWidth, Color borderColor)
          Initializes a new instance of the IndexedColumnSeries class.
IndexedColumnSeries(java.lang.String name, NumericYAxis numericYAxis)
          Initializes a new instance of the IndexedColumnSeries class.
 
Method Summary
 IndexedColumnValueList getValues()
          Gets the IndexedColumnValueList object contained in the column series with indexed axis.
 IndexedXAxis getXAxis()
          Gets the IndexedXAxis object of the series.
 NumericYAxis getYAxis()
          Gets the NumericYAxis object of the series.
 
Methods inherited from class com.cete.dynamicpdf.pageelements.charting.series.ColumnSeries
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

IndexedColumnSeries

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

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

IndexedColumnSeries

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

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

IndexedColumnSeries

public IndexedColumnSeries(java.lang.String name,
                           IndexedXAxis indexedXAxis,
                           NumericYAxis numericYAxis)
Initializes a new instance of the IndexedColumnSeries class.

Parameters:
name - Name of the column series with indexed axis.
indexedXAxis - IndexedXAxis of the column series with indexed axis.
numericYAxis - NumericYAxis of the column series with indexed axis.
See Also:
IndexedXAxis, NumericYAxis

IndexedColumnSeries

public IndexedColumnSeries(java.lang.String name,
                           IndexedXAxis indexedXAxis)
Initializes a new instance of the IndexedColumnSeries class.

Parameters:
name - Name of the column series with indexed axis.
indexedXAxis - IndexedXAxis of the column series with indexed axis.
See Also:
IndexedXAxis

IndexedColumnSeries

public IndexedColumnSeries(java.lang.String name,
                           NumericYAxis numericYAxis)
Initializes a new instance of the IndexedColumnSeries class.

Parameters:
name - Name of the column series with indexed axis.
numericYAxis - NumericYAxis of the column series with indexed axis.
See Also:
NumericYAxis

IndexedColumnSeries

public IndexedColumnSeries(java.lang.String name,
                           IndexedXAxis indexedXAxis,
                           NumericYAxis numericYAxis,
                           Color color)
Initializes a new instance of the IndexedColumnSeries class.

Parameters:
name - Name of the column series with indexed axis.
indexedXAxis - IndexedXAxis of the column series with indexed axis.
numericYAxis - NumericYAxis of the column series with indexed axis.
color - Color of the column series with indexed axis.
See Also:
IndexedXAxis, NumericYAxis

IndexedColumnSeries

public IndexedColumnSeries(java.lang.String name,
                           IndexedXAxis indexedXAxis,
                           NumericYAxis numericYAxis,
                           Color color,
                           Legend legend)
Initializes a new instance of the IndexedColumnSeries class.

Parameters:
name - Name of the column series with indexed axis.
indexedXAxis - IndexedXAxis of the column series with indexed axis.
numericYAxis - NumericYAxis of the column series with indexed axis.
color - Color of the column series with indexed axis.
legend - Legend of the column series with indexed axis.
See Also:
IndexedXAxis, NumericYAxis, Legend

IndexedColumnSeries

public IndexedColumnSeries(java.lang.String name,
                           IndexedXAxis indexedXAxis,
                           NumericYAxis numericYAxis,
                           Color color,
                           float borderWidth)
Initializes a new instance of the IndexedColumnSeries class.

Parameters:
name - Name of the column series with indexed axis.
indexedXAxis - IndexedXAxis of the column series with indexed axis.
numericYAxis - NumericYAxis of the column series with indexed axis.
color - Color of the column series with indexed axis.
borderWidth - Border width of the column series with indexed axis.
See Also:
IndexedXAxis, NumericYAxis

IndexedColumnSeries

public IndexedColumnSeries(java.lang.String name,
                           IndexedXAxis indexedXAxis,
                           NumericYAxis numericYAxis,
                           float borderWidth,
                           Color borderColor)
Initializes a new instance of the IndexedColumnSeries class.

Parameters:
name - Name of the column series with indexed axis.
indexedXAxis - IndexedXAxis of the column series with indexed axis.
numericYAxis - NumericYAxis of the column series with indexed axis.
borderWidth - Border width of the column series with indexed axis.
borderColor - Border Color for the border of the column series with indexed axis.
See Also:
IndexedXAxis, NumericYAxis

IndexedColumnSeries

public IndexedColumnSeries(java.lang.String name,
                           IndexedXAxis indexedXAxis,
                           NumericYAxis numericYAxis,
                           Color color,
                           float borderWidth,
                           Color borderColor)
Initializes a new instance of the IndexedColumnSeries class.

Parameters:
name - Name of the column series with indexed axis.
indexedXAxis - IndexedXAxis of the column series with indexed axis.
numericYAxis - NumericYAxis of the column series with indexed axis.
color - Color of the column series with indexed axis.
borderWidth - Border width of the column series with indexed axis.
borderColor - Border Color for the border of the column series with indexed axis.
See Also:
IndexedXAxis, NumericYAxis

IndexedColumnSeries

public IndexedColumnSeries(java.lang.String name,
                           IndexedXAxis indexedXAxis,
                           NumericYAxis numericYAxis,
                           Color color,
                           float borderWidth,
                           Color borderColor,
                           Legend legend)
Initializes a new instance of the IndexedColumnSeries class.

Parameters:
name - Name of the column series with indexed axis.
indexedXAxis - IndexedXAxis of the column series with indexed axis.
numericYAxis - NumericYAxis of the column series with indexed axis.
color - Color of the column series with indexed axis.
borderWidth - Border width of the column series with indexed axis.
borderColor - Border Color for the border of the column series with indexed axis.
legend - Legend of the column series with indexed axis.
See Also:
IndexedXAxis, NumericYAxis, Legend
Method Detail

getValues

public IndexedColumnValueList getValues()
Gets the IndexedColumnValueList object contained in the column series with indexed axis.

Returns:
the value list.
See Also:
IndexedColumnValueList

getXAxis

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

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

getYAxis

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

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

DynamicPDF by ceTe Software

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