Class BoxPlotSeries
Represents a chart series that plot their points using box plot shapes. The series support default visuals - BoxPlotShape instances.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Controls.ChartView
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
public class BoxPlotSeries : CategoricalSeriesBase, IChartElementPresenterWithMargin, IChartSeries, IChartElementPresenter, ISeries
Constructors
BoxPlotSeries()
Fields
CombineModeProperty
Identifies the CombineMode property.
Declaration
public static readonly DependencyProperty CombineModeProperty
Field Value
System.Windows.DependencyProperty
|
LegendSettingsProperty
Identifies the LegendSettings dependency property.
Declaration
public static readonly DependencyProperty LegendSettingsProperty
Field Value
System.Windows.DependencyProperty
|
LimitersLengthProperty
Identifies the LimitersLength property.
Declaration
public static readonly DependencyProperty LimitersLengthProperty
Field Value
System.Windows.DependencyProperty
|
LowerQuartileBindingProperty
Identifies the LowerQuartileBinding property.
Declaration
public static readonly DependencyProperty LowerQuartileBindingProperty
Field Value
System.Windows.DependencyProperty
|
MaximumBindingProperty
Identifies the MaximumBinding property.
Declaration
public static readonly DependencyProperty MaximumBindingProperty
Field Value
System.Windows.DependencyProperty
|
MedianBindingProperty
Identifies the MedianBinding property.
Declaration
public static readonly DependencyProperty MedianBindingProperty
Field Value
System.Windows.DependencyProperty
|
MinimumBindingProperty
Identifies the MinimumBinding property.
Declaration
public static readonly DependencyProperty MinimumBindingProperty
Field Value
System.Windows.DependencyProperty
|
UpperQuartileBindingProperty
Identifies the UpperQuartileBinding property.
Declaration
public static readonly DependencyProperty UpperQuartileBindingProperty
Field Value
System.Windows.DependencyProperty
|
Properties
CombineMode
Gets or sets the combination mode to be used when data points are plotted.
Declaration
public ChartSeriesCombineMode CombineMode { get; set; }
Property Value
ChartSeriesCombineMode
|
DataPoints
Gets the collection of data points associated with the series.
Declaration
public DataPointCollection<BoxPlotDataPoint> DataPoints { get; }
Property Value
DataPointCollection<BoxPlotDataPoint>
|
LegendSettings
Gets or sets the legend settings.
Declaration
public SeriesLegendSettings LegendSettings { get; set; }
Property Value
SeriesLegendSettings
|
LimitersLength
Gets or sets the length of the lines representing the minimum and maximum values of the box plot visual.
Declaration
public double LimitersLength { get; set; }
Property Value
System.Double
|
Remarks
The property works with relative units between 0 and 1, where 1 means 100% of the layout slot. The default value is 0.5.
LowerQuartileBinding
Gets or sets the binding that will be used to fill the LowerQuartile member of the contained data points.
Declaration
public DataPointBinding LowerQuartileBinding { get; set; }
Property Value
DataPointBinding
|
MaximumBinding
Gets or sets the binding that will be used to fill the Maximum member of the contained data points.
Declaration
public DataPointBinding MaximumBinding { get; set; }
Property Value
DataPointBinding
|
MedianBinding
Gets or sets the binding that will be used to fill the Median member of the contained data points.
Declaration
public DataPointBinding MedianBinding { get; set; }
Property Value
DataPointBinding
|
MinimumBinding
Gets or sets the binding that will be used to fill the Minimum member of the contained data points.
Declaration
public DataPointBinding MinimumBinding { get; set; }
Property Value
DataPointBinding
|
UpperQuartileBinding
Gets or sets the binding that will be used to fill the UpperQuartile member of the contained data points.
Declaration
public DataPointBinding UpperQuartileBinding { get; set; }
Property Value
DataPointBinding
|
Methods
GetLowerQuartileAggregateFunction()
When overridden in a derived class, this method returns the function used to calculate the aggregate values for the LowerQuartile property.
Declaration
protected virtual ChartAggregateFunction GetLowerQuartileAggregateFunction()
Returns
ChartAggregateFunction
|
GetMaximumAggregateFunction()
When overridden in a derived class, this method returns the function used to calculate the aggregate values for the Maximum property.
Declaration
protected virtual ChartAggregateFunction GetMaximumAggregateFunction()
Returns
ChartAggregateFunction
|
GetMedianAggregateFunction()
When overridden in a derived class, this method returns the function used to calculate the aggregate values for the Median property.
Declaration
protected virtual ChartAggregateFunction GetMedianAggregateFunction()
Returns
ChartAggregateFunction
|
GetMinimumAggregateFunction()
When overridden in a derived class, this method returns the function used to calculate the aggregate values for the Minimum property.
Declaration
protected virtual ChartAggregateFunction GetMinimumAggregateFunction()
Returns
ChartAggregateFunction
|
GetUpperQuartileAggregateFunction()
When overridden in a derived class, this method returns the function used to calculate the aggregate values for the UpperQuartile property.
Declaration
protected virtual ChartAggregateFunction GetUpperQuartileAggregateFunction()
Returns
ChartAggregateFunction
|