[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IChart.PlotVisibleOnly

PlotVisibleOnly Property

PlotVisibleOnly

Gets or sets whether the chart plots only visible cells.

If this property is true, the chart plots data from visible cells only. If this property is false, the chart plots data from both visible and hidden cells.

Declaration
bool PlotVisibleOnly { get; set; }
Property PlotVisibleOnly As Boolean
Examples
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 20, 20, 300, 200).Chart;
chart.PlotVisibleOnly = false;
bool plotVisibleOnly = chart.PlotVisibleOnly;