[]
Gets or sets the value above which an overflow bin is displayed.
This property applies when BinsOverflowEnabled returns true.
double BinsOverflowValue { get; set; }
Property BinsOverflowValue As Double
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;