IChart.StockStyle

Syntax

StockStyle: ChartStockStyle;

Description

The Style property determines the appearance of a stock chart.

Comments

The default value is Type1.

Example

This example assumes that there is the Chart object of the IChart type. A stock type chart should be used. To transform a chart to this type you need to run the following command:

«Chart.Type := 5 As ChartType»

Sub Stock;

Var

Chart : IChart;

Begin

Chart.StockStyle := 2 As ChartStockStyle;

End Sub Stock;

After executing the example style of the Type3 is used for the stock chart.

See also:

IChart