[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IChartGroup.BinsOverflowValue

BinsOverflowValue Property

BinsOverflowValue

Gets or sets the value above which an overflow bin is displayed.

This property applies when BinsOverflowEnabled returns true.

Declaration
double BinsOverflowValue { get; set; }
Property BinsOverflowValue As Double
Examples
worksheet.Range["A1:A6"].Value = new object[,] {
    {"Score"},
    {10},
    {12},
    {15},
    {18},
    {22}
};
IChart chart = worksheet.Shapes.AddChart(ChartType.Histogram, 20, 20, 300, 200).Chart;
chart.SeriesCollection.Add(worksheet.Range["A1:A6"]);
IChartGroup chartGroup = chart.ChartGroups[0];
chartGroup.BinsOverflowEnabled = true;
chartGroup.BinsOverflowValue = 20.0;
double overflowValue = chartGroup.BinsOverflowValue;