[]
Gets or sets whether the median is included in the quartile calculation when the quartiles are computed by using the inclusive median method.
This property is valid only for boxwhisker charts.
bool QuartileCalculationInclusiveMedian { get; set; }
Property QuartileCalculationInclusiveMedian As Boolean
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 inclusiveMedian = series.QuartileCalculationInclusiveMedian;