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