[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.ISeries.ShowInnerPoints

ShowInnerPoints Property

ShowInnerPoints

Gets or sets whether to show the data points that lie between the lower whisker line and the upper whisker line.

This property is valid only for boxwhisker charts.

Declaration
bool ShowInnerPoints { get; set; }
Property ShowInnerPoints As Boolean
Examples
worksheet.Range["A1:A5"].Value = new object[,] {{10}, {12}, {13}, {14}, {40}};
IChart chart = worksheet.Shapes.AddChart(ChartType.BoxWhisker, 20, 20, 300, 200).Chart;
chart.SeriesCollection.Add(worksheet.Range["A1:A5"]);
ISeries series = chart.SeriesCollection[0];
bool showInnerPoints = series.ShowInnerPoints;