IChart.Style

Syntax

Style: ChartStyle;

Description

The Style property determines a chart scale type.

Comments

Absolute scale is used by default.

Example

This example assumes that there is the Chart object of the IChart type.

Sub Scale;

Var

Chart : IChart;

Begin

Chart.Style := 1 As ChartStyle;

End Sub Scale;

After executing the example relative scale is used for the chart.

See also:

IChart