[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IChartGroup.HasUpDownBars

HasUpDownBars Property

HasUpDownBars

Gets or sets whether the line chart has up and down bars.

Declaration
bool HasUpDownBars { get; set; }
Property HasUpDownBars As Boolean
Examples
worksheet.Range["A1:C4"].Value = new object[,] {
    {"Month", "Series 1", "Series 2"},
    {"Jan", 10, 14},
    {"Feb", 18, 12},
    {"Mar", 15, 20}
};
IChart chart = worksheet.Shapes.AddChart(ChartType.Line, 20, 20, 300, 200).Chart;
chart.SeriesCollection.Add(worksheet.Range["A1:C4"], RowCol.Columns, true, true);
IChartGroup chartGroup = chart.LineGroups[0];
chartGroup.HasUpDownBars = true;
bool hasUpDownBars = chartGroup.HasUpDownBars;