New to Telerik UI for WPFStart a free 30-day trial

Represents a chart scatter range bar series.

Definition

Namespace:Telerik.Windows.Controls.ChartView

Assembly:Telerik.Windows.Controls.Chart.dll

Syntax:

C#
public class ScatterRangeBarSeries : CartesianSeries, IChartElementPresenter

Inheritance: objectRadControlBasePresenterBaseChartElementPresenterChartSeriesPointTemplateSeriesCartesianSeriesScatterRangeBarSeries...

Implements: IChartElementPresenter

Inherited Members CartesianSeries.HorizontalAxisPropertyCartesianSeries.VerticalAxisPropertyCartesianSeries.OnAttached()CartesianSeries.HorizontalAxisCartesianSeries.VerticalAxisPointTemplateSeries.PointTemplatePropertyPointTemplateSeries.PointTemplateSelectorPropertyPointTemplateSeries.DefaultVisualStylePropertyPointTemplateSeries.DefaultVisualStyleSelectorPropertyPointTemplateSeries.RenderOptionsPropertyPointTemplateSeries.OnLoaded(object, RoutedEventArgs)PointTemplateSeries.OnPlayPointAnimations(bool)PointTemplateSeries.OnApplyTemplate()PointTemplateSeries.GetDataPointVisual(DataPoint)PointTemplateSeries.MeasureNodeOverride(ChartNode, object)PointTemplateSeries.OnRenderOptionsChanged(ChartRenderOptions, ChartRenderOptions)PointTemplateSeries.DefaultVisualStylePointTemplateSeries.DefaultVisualStyleSelectorPointTemplateSeries.PointTemplatePointTemplateSeries.PointTemplateSelectorPointTemplateSeries.PointTemplatesPointTemplateSeries.RenderOptionsChartSeries.SeriesAnimationPropertyChartSeries.PointAnimationPropertyChartSeries.IsSelectedPropertyChartSeries.AllowSelectPropertyChartSeries.TrackBallTemplatePropertyChartSeries.TrackBallInfoTemplatePropertyChartSeries.ItemsSourcePropertyChartSeries.ClipToPlotAreaPropertyChartSeries.DisplayNamePropertyChartSeries.TooltipTemplatePropertyChartSeries.LabelConnectorsSettingsPropertyChartSeries.ShowLabelsPropertyChartSeries.PlaySeriesAnimation()ChartSeries.PlayPointAnimations()ChartSeries.OnPlaySeriesAnimation(bool)ChartSeries.HitTest(Rect)ChartSeries.HitTestDataPoints(Rect)ChartSeries.HitTestElements(Rect)ChartSeries.HitTestElementsCore(Rect)ChartSeries.HitTestDataPointsCore(Rect)ChartSeries.OnVisibilityChanged()ChartSeries.GetLabelConnector(ChartSeriesLabelPositionInfo)ChartSeries.GetDataPointLabels(DataPoint)ChartSeries.SeriesAnimationChartSeries.PointAnimationChartSeries.IsSelectedChartSeries.AllowSelectChartSeries.TrackBallTemplateChartSeries.TrackBallInfoTemplateChartSeries.DisplayNameChartSeries.TooltipTemplateChartSeries.ClipToPlotAreaChartSeries.ItemsSourceChartSeries.LabelConnectorsSettingsChartSeries.LabelDefinitionsChartSeries.ShowLabelsChartSeries.SeriesAnimationCompletedChartSeries.PointAnimationsCompletedChartSeries.DataBindingCompleteChartElementPresenter.OnPropertyChanged(DependencyPropertyChangedEventArgs)ChartElementPresenter.ZIndexChartElementPresenter.ChartPresenterBase.InfinitySizePresenterBase.InfinityPointPresenterBase.RefreshNode(ChartNode)PresenterBase.InvalidatePalette()PresenterBase.RefreshNodeCore(ChartNode)PresenterBase.CreateContentPresenter(object, DataTemplate)PresenterBase.OnInitialized(EventArgs)PresenterBase.RenderSurfaceRadControlBase.OnUnloaded(object, RoutedEventArgs)RadControlBase.IsLoadedRadControlBase.IsTemplateApplied...

Constructors

Initializes a new instance of the ScatterRangeBarSeries class.

C#
public ScatterRangeBarSeries()

Fields

Identifies the HorizontalHighBinding property.

C#
public static readonly DependencyProperty HorizontalHighBindingProperty

Identifies the HorizontalLowBinding property.

C#
public static readonly DependencyProperty HorizontalLowBindingProperty

LegendSettingsProperty

DependencyProperty

Identifies the LegendSettings dependency property.

C#
public static readonly DependencyProperty LegendSettingsProperty

VerticalHighBindingProperty

DependencyProperty

Identifies the VerticalHighBinding property.

C#
public static readonly DependencyProperty VerticalHighBindingProperty

VerticalLowBindingProperty

DependencyProperty

Identifies the VerticalLowBinding property.

C#
public static readonly DependencyProperty VerticalLowBindingProperty

Properties

Gets the collection of data points associated with the series.

C#
public DataPointCollection<ScatterRangeDataPoint> DataPoints { get; }

Gets or sets the binding that will be used to fill the HorizontalHigh member of the contained data points.

C#
[TypeConverter(typeof(StringToDataPointBindingConverter))]
public DataPointBinding HorizontalHighBinding { get; set; }

Gets or sets the binding that will be used to fill the member of the contained data points.

C#
[TypeConverter(typeof(StringToDataPointBindingConverter))]
public DataPointBinding HorizontalLowBinding { get; set; }

Gets or sets the legend settings.

C#
public ChartLegendSettings LegendSettings { get; set; }

Gets or sets the PaletteMode.

C#
public SeriesPaletteMode PaletteMode { get; set; }

Gets or sets the binding that will be used to fill the VerticalHigh member of the contained data points.

C#
[TypeConverter(typeof(StringToDataPointBindingConverter))]
public DataPointBinding VerticalHighBinding { get; set; }

Gets or sets the binding that will be used to fill the VerticalLow member of the contained data points.

C#
[TypeConverter(typeof(StringToDataPointBindingConverter))]
public DataPointBinding VerticalLowBinding { get; set; }

Methods

When overridden in a derived class, this method returns the function used to calculate the aggregate values for the HorizontalHigh property.

C#
protected virtual ChartAggregateFunction GetHorizontalHighAggregateFunction()
Returns:

ChartAggregateFunction

When overridden in a derived class, this method returns the function used to calculate the aggregate values for the HorizontalLow property.

C#
protected virtual ChartAggregateFunction GetHorizontalLowAggregateFunction()
Returns:

ChartAggregateFunction

When overridden in a derived class, this method returns the function used to calculate the aggregate values for the VerticalHigh property.

C#
protected virtual ChartAggregateFunction GetVerticalHighAggregateFunction()
Returns:

ChartAggregateFunction

When overridden in a derived class, this method returns the function used to calculate the aggregate values for the VerticalLow property.

C#
protected virtual ChartAggregateFunction GetVerticalLowAggregateFunction()
Returns:

ChartAggregateFunction

Returns class-specific AutomationPeer implementations for the Windows Presentation Foundation (WPF) infrastructure.

C#
protected override AutomationPeer OnCreateAutomationPeer()
Returns:

AutomationPeer

The type-specific AutomationPeer implementation.

Occurs when the presenter has been successfully detached from its owning RadChartBase instance.

C#
protected override void OnDetached(RadChartBase oldChart)
Parameters:oldChartRadChartBase

Overrides: CartesianSeries.OnDetached(RadChartBase)

Raises the event.

C#
protected override void OnMouseEnter(MouseEventArgs e)
Parameters:eMouseEventArgs

The MouseEventArgs instance containing the event data.

Overrides: CartesianSeries.OnMouseEnter(MouseEventArgs)

Raises the event.

C#
protected override void OnMouseLeave(MouseEventArgs e)
Parameters:eMouseEventArgs

The MouseEventArgs instance containing the event data.

Overrides: CartesianSeries.OnMouseLeave(MouseEventArgs)