Class ScatterSeries
Control that displays values as a scatter chart visualization.
Inheritance
Implements
Inherited Members
Namespace: System.Windows.Controls.DataVisualization.Charting.Compatible
Assembly: OpenSilver.Controls.DataVisualization.Toolkit.dll
Syntax
[StyleTypedProperty(Property = "DataPointStyle", StyleTargetType = typeof(ScatterDataPoint))]
[StyleTypedProperty(Property = "LegendItemStyle", StyleTargetType = typeof(LegendItem))]
public class ScatterSeries : StackedLineSeries, IControl, IFrameworkElement, IUIElement, IDependencyObject, ISeries, IAxisListener, IRangeProvider, IValueMarginProvider, IDataProvider, ISeriesHost, IRequireSeriesHost, IResourceDictionaryDispenser
Remarks
Based on the DefinitionSeries hierarchy.
Constructors
| Improve this Doc View SourceScatterSeries()
Initializes a new instance of the ScatterSeries class.
Declaration
public ScatterSeries()
Fields
| Improve this Doc View SourceDataPointStyleProperty
Identifies the DataPointStyle dependency property.
Declaration
public static readonly DependencyProperty DataPointStyleProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
DependentRangeAxisProperty
Identifies the DependentRangeAxis dependency property.
Declaration
public static readonly DependencyProperty DependentRangeAxisProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
IsSelectionEnabledProperty
Identifies the IsSelectionEnabled dependency property.
Declaration
public static readonly DependencyProperty IsSelectionEnabledProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
ItemsSourceProperty
Identifies the ItemsSource dependency property.
Declaration
public static readonly DependencyProperty ItemsSourceProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
LegendItemStyleProperty
Identifies the LegendItemStyle dependency property.
Declaration
public static readonly DependencyProperty LegendItemStyleProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
TitleProperty
Identifies the Title dependency property.
Declaration
public static readonly DependencyProperty TitleProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
TransitionDurationProperty
Identifies the TransitionDuration dependency property.
Declaration
public static readonly DependencyProperty TransitionDurationProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
TransitionEasingFunctionProperty
Identifies the TransitionEasingFunction dependency property.
Declaration
public static readonly DependencyProperty TransitionEasingFunctionProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
Properties
| Improve this Doc View SourceDataPointStyle
Gets or sets the Style to use for the DataPoints of the series.
Declaration
public Style DataPointStyle { get; set; }
Property Value
Type | Description |
---|---|
Style |
DependentRangeAxis
Gets or sets the IRangeAxis to use as the dependent axis of the series.
Declaration
public IRangeAxis DependentRangeAxis { get; set; }
Property Value
Type | Description |
---|---|
IRangeAxis |
DependentValueBinding
Gets or sets the Binding that identifies the dependent values of the series.
Declaration
public Binding DependentValueBinding { get; set; }
Property Value
Type | Description |
---|---|
Binding |
DependentValuePath
Gets or sets the Binding path that identifies the dependent values of the series.
Declaration
public string DependentValuePath { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IndependentValueBinding
Gets or sets the Binding that identifies the independent values of the series.
Declaration
public Binding IndependentValueBinding { get; set; }
Property Value
Type | Description |
---|---|
Binding |
IndependentValueGroups
Gets a sequence of IndependentValueGroups.
Declaration
protected override IEnumerable<DefinitionSeries.IndependentValueGroup> IndependentValueGroups { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<DefinitionSeries.IndependentValueGroup> |
Overrides
| Improve this Doc View SourceIndependentValuePath
Gets or sets the Binding path that identifies the independent values of the series.
Declaration
public string IndependentValuePath { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IsSelectionEnabled
Gets or sets a value indicating whether selection is enabled.
Declaration
public bool IsSelectionEnabled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
ItemsSource
Gets or sets a sequence that provides the content of the series.
Declaration
public IEnumerable ItemsSource { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.IEnumerable |
LegendItemStyle
Gets or sets the Style to use for the LegendItem of the series.
Declaration
public Style LegendItemStyle { get; set; }
Property Value
Type | Description |
---|---|
Style |
Title
Gets or sets the title of the series.
Declaration
public object Title { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
TransitionDuration
Gets or sets the TimeSpan to use for the duration of data transitions.
Declaration
public TimeSpan TransitionDuration { get; set; }
Property Value
Type | Description |
---|---|
System.TimeSpan |
TransitionEasingFunction
Gets or sets the IEasingFunction to use for data transitions.
Declaration
public IEasingFunction TransitionEasingFunction { get; set; }
Property Value
Type | Description |
---|---|
IEasingFunction |
Methods
| Improve this Doc View SourceCreateDataPoint()
Creates a DataPoint for the series.
Declaration
protected override DataPoint CreateDataPoint()
Returns
Type | Description |
---|---|
DataPoint | Series-appropriate DataPoint instance. |
Overrides
| Improve this Doc View SourceUpdateShape(IList<IEnumerable<Point>>)
Updates the shape for the series.
Declaration
protected override void UpdateShape(IList<IEnumerable<Point>> definitionPoints)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IList<System.Collections.Generic.IEnumerable<Point>> | definitionPoints | Locations of the points of each SeriesDefinition in the series. |