Table of Contents

ExcelChart.GetSeriesInSubchart Method

Returns a series definition for a given subchart. Note: This method only works in xlsx files.

Syntax

Namespace: FlexCel.Core

public abstract ChartSeries GetSeriesInSubchart(Int32 subchart, Int32 indexInSubchart, Boolean getDefinitions, Boolean getValues, Boolean getOptions)

Parameters

<-> Parameter Type Description
subchart Int32 Subchart where we want to get the series from. (1 based)
indexInSubchart Int32 Index of the series you want to return in the given subchart. (1 based)
getDefinitions Boolean If false, this method will not return the series formulas, so it will be a little faster.
getValues Boolean If false, this method will not return the series values, so it will be a little faster and use less memory.
getOptions Boolean If false, this method will not return the series options.

Returns

series description.

See also