IChart.StockStyle

Syntax

StockStyle: ChartStockStyle;

Description

The Style property determines a stock chart appearance.

Comments

The default value is Type1.

Example

This example assumes that there is the Chart object of the IChart type. The chart must be a stock chart. To transform a chart into this type, execute the command:

Chart.Type := 5 As ChartType

Sub Stock;
Var
    Chart : IChart;
Begin
    Chart.StockStyle := 2 As ChartStockStyle;
End Sub Stock;

After executing the example the stock chart looks as Type3.

See also:

IChart