IPrxChart.PointsSimple

Syntax

PointsSimple: Boolean;

Description

The PointsSimple property determines the order of generating values to name chart points. If the property is set to False, 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 SeriesSimple properties, installed together, 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 the Use Simple Names of Series and Points option is enabled for the regular report chart. See below examples of displaying a chart with this option disabled (left) and enabled (right):

See also:

IPrxChart | IPrxChart.SeriesSimple