2D Chart for WinForms | ComponentOne
Chart for WinForms Task-Based Help / Candle Chart Tasks / Increasing the Width Size of the Candle Body
In This Topic
    Increasing the Width Size of the Candle Body
    In This Topic

    To make the width for the body of the candle chart wider, specify a larger value for the Size property like in the following code. Note, that the default value for the body width of the candle is 5.

    To write code in Visual Basic

    Visual Basic
    Copy Code
    c1Chart1.ChartGroups(0).ChartData.SeriesList(0).ChartSymbolStyle.Size = 10
    

    To write code in C#

    C#
    Copy Code
    c1Chart1.ChartGroups[0].ChartData.SeriesList[0].ChartSymbolStyle.Size = 10;
    
    See Also