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