IPrxChart.PointChartMode

Syntax

PointChartMode: PrxPointChartMode;

Description

The PointChartMode property determines data transfer method. The property is relevant for scatter charts.

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.Data := "B4:F8";

Chart.Series := "A4:A8";

Chart.Points := "B1:F1";

(Chart As IChart).Type := ChartType.Points; //scatter chart

Chart.PointChartMode := PrxPointChartMode.YXYX;

End Sub UserProc;

Executing the example changes source data of the chart, chart type and determines the data transfer method.

See also:

IPrxChart