[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IChart.DisplayBlanksAs

DisplayBlanksAs Property

DisplayBlanksAs

Gets or sets the way that blank cells are plotted on the chart.

Use NotPlotted to leave blanks as gaps, Interpolated to connect adjacent points across blanks, or Zero to plot blanks as zero values.

Declaration
DisplayBlanksAs DisplayBlanksAs { get; set; }
Property DisplayBlanksAs As DisplayBlanksAs
Examples
IChart chart = worksheet.Shapes.AddChart(ChartType.Line, 20, 20, 300, 200).Chart;
chart.DisplayBlanksAs = DisplayBlanksAs.Interpolated;
DisplayBlanksAs displayBlanksAs = chart.DisplayBlanksAs;