# GrapeCity.Documents.Excel.Drawing.IChartGroup.BinsOverflowValue

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="GrapeCity_Documents_Excel_Drawing_IChartGroup_BinsOverflowValue_" data-uid="GrapeCity.Documents.Excel.Drawing.IChartGroup.BinsOverflowValue*">BinsOverflowValue Property
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="GrapeCity_Documents_Excel_Drawing_IChartGroup_BinsOverflowValue_" data-uid="GrapeCity.Documents.Excel.Drawing.IChartGroup.BinsOverflowValue*"></a>
<h4 id="GrapeCity_Documents_Excel_Drawing_IChartGroup_BinsOverflowValue" data-uid="GrapeCity.Documents.Excel.Drawing.IChartGroup.BinsOverflowValue">BinsOverflowValue</h4>
<div class="markdown level1 summary"><p>Gets or sets the value above which an overflow bin is displayed.</p>
<p>This property applies when <a class="xref" href="GrapeCity.Documents.Excel.Drawing.IChartGroup.BinsOverflowEnabled.html#GrapeCity_Documents_Excel_Drawing_IChartGroup_BinsOverflowEnabled">BinsOverflowEnabled</a> returns <code><a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">true</a></code>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">double BinsOverflowValue { get; set; }</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Property BinsOverflowValue As Double</code></pre>
</div>
<h5 id="GrapeCity_Documents_Excel_Drawing_IChartGroup_BinsOverflowValue_examples">Examples</h5>
<pre><code class="lang-csharp">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;</code></pre>

</div>
