IPrxChart.SeriesSimple

Syntax

SeriesSimple: Boolean;

Description

The SeriesSimple property determines the order of generating values to name chart series. If the property is set to True, all parent names are used when generating values. If the property is set to False, only the name of the last element is used.

NOTE. The PointsSimple and the SeriesSimple properties determine the state of the Use Simple Names of Series and Points option.

Example

The following example assumes that there is the Report object with the IPrxReport type.

Sub UserProc;

Var

Report: IPrxReport;

Chart: IPrxChart;

Begin

Chart := (Report.ActiveSheet As IPrxTable).TabSheet.Objects.Item(0).Extension As IPrxChart;

Chart.PointsSimple := True;

Chart.SeriesSimple := True;

End Sub UserProc;

After executing the example for the chart of the regular report the Use Simple Titles of Series and Points option is enabled. See below examples of displaying a chart with this option disabled (left) and enabled (right):

See also:

IPrxChart | IPrxChart.PointsSimple