Table of Contents

ChartSeries.ChartSeries Constructor

Overloads

ChartSeries.ChartSeries

Creates a new empty instance.

Syntax

Namespace: FlexCel.Core

public ChartSeries()

See also

ChartSeries.ChartSeries(String, String, String)

Creates a new instance with the needed values when adding a new series.

Syntax

Namespace: FlexCel.Core

public ChartSeries(String aTitleDefinition, String aDataDefinition, String aCategoriesDefinition)

Parameters

<-> Parameter Type Description
aTitleDefinition String Title of the series.
aDataDefinition String Formula defining the Data for the series.
aCategoriesDefinition String Formula defining the Categories for the series.

See also

ChartSeries.ChartSeries(String, String, String, Object, Object[], Object[], String[], String[], Int32, Int32, Int32)

Creates a new instance and fills it with default values.

Syntax

Namespace: FlexCel.Core

public ChartSeries(String aTitleDefinition, String aDataDefinition, String aCategoriesDefinition, Object aTitleValue, Object[] aDataValues, Object[] aCategoriesValues, String[] aDataFormats, String[] aCategoriesFormats, Int32 aChartOptionsIndex, Int32 aSeriesIndex, Int32 aSeriesNumber)

Parameters

<-> Parameter Type Description
aTitleDefinition String Title of the series.
aDataDefinition String Formula defining the Data for the series.
aCategoriesDefinition String Formula defining the Categories for the series.
aTitleValue Object Evaluated value of the series title.
aDataValues Object[] Actual values for the categories.
aCategoriesValues Object[] Actual values for the series.
aDataFormats String[] See DataFormats
aCategoriesFormats String[] See CategoriesFormats
aChartOptionsIndex Int32 Index to the ChartOptions object that applies to this series.
aSeriesIndex Int32 Index of this series on the file.
aSeriesNumber Int32 Series number as shown on the Legend box. This might be different from the SeriesIndex if the order of the series is changed.

See also