# GrapeCity.Documents.Excel.Drawing.IChartGroup.ShowNegativeBubbles

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="GrapeCity_Documents_Excel_Drawing_IChartGroup_ShowNegativeBubbles_" data-uid="GrapeCity.Documents.Excel.Drawing.IChartGroup.ShowNegativeBubbles*">ShowNegativeBubbles Property
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="GrapeCity_Documents_Excel_Drawing_IChartGroup_ShowNegativeBubbles_" data-uid="GrapeCity.Documents.Excel.Drawing.IChartGroup.ShowNegativeBubbles*"></a>
<h4 id="GrapeCity_Documents_Excel_Drawing_IChartGroup_ShowNegativeBubbles" data-uid="GrapeCity.Documents.Excel.Drawing.IChartGroup.ShowNegativeBubbles">ShowNegativeBubbles</h4>
<div class="markdown level1 summary"><p>Gets or sets whether negative bubbles are shown for the chart group.</p>
<p>This property is valid only for bubble charts.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">bool ShowNegativeBubbles { get; set; }</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Property ShowNegativeBubbles As Boolean</code></pre>
</div>
<h5 id="GrapeCity_Documents_Excel_Drawing_IChartGroup_ShowNegativeBubbles_examples">Examples</h5>
<pre><code class="lang-csharp">IChart chart = worksheet.Shapes.AddChart(ChartType.Bubble, 20, 20, 300, 200).Chart;
IChartGroup chartGroup = chart.ChartGroups[0];
chartGroup.ShowNegativeBubbles = true;
bool showNegativeBubbles = chartGroup.ShowNegativeBubbles;</code></pre>

</div>
