IChartSerie.Name

Syntax

Name: String;

Description

The Name property returns a series name. This property is read only.

Example

This example assumes that there is the Serie object of the IChartSerie type.

Sub Name;

Var

Serie : IChartSerie;

Appellation : String;

Begin

Appellation := Serie.Name As String;

End Sub Name;

After executing the example the Appellation variable contains the name of the series.

See also:

IChartSerie