ChartCollection.Item

ChartCollection indexer (1 of 2)

Gets the Chart element at the specified index.

public Chart this[int index] { get; }
ParameterDescription
indexThe zero based index of the element.

Return Value

The element at the specified index.

See Also


ChartCollection indexer (2 of 2)

Gets the chart by the name.

public Chart this[string name] { get; }
ParameterDescription
nameThe chart name.

Return Value

The chart.

Remarks

The default chart name is null. So you have to explicitly set the name of the chart.

See Also