IChart.Orientation

Syntax

Orientation: ChartOrientation;

Description

The Orientation property determines a chart orientation.

Comments

By default, left-to-right orientation is used.

Example

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

Sub Orient;

Var

Chart : IChart;

Begin

Chart.Orientation := 1 As ChartOrientation;

End Sub Orient;

Executing the example changes the chart orientation to the bottom-to-top orientation.

See also:

IChart