StockStyle: ChartStockStyle;
The Style property determines the appearance of a stock chart.
The default value is Type1.
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: