[]
Gets or sets the threshold value below which an underflow bin is displayed.
This property applies to histogram charts and is used when the underflow bin is enabled through BinsUnderflowEnabled.
double BinsUnderflowValue { get; set; }
Property BinsUnderflowValue As Double
worksheet.Range["A1:A6"].Value = new object[,] {
{"Score"},
{8},
{10},
{12},
{18},
{24}
};
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.BinsUnderflowEnabled = true;
chartGroup.BinsUnderflowValue = 10.0;
double underflowValue = chartGroup.BinsUnderflowValue;