Class ScatterSeries
Represents a control that contains a data series to be rendered in X/Y scatter format.
Inheritance
System.Object
ScatterSeries
Implements
Inherited Members
System.Windows.FrameworkElement.RegisterName(System.String, System.Object)
System.Windows.FrameworkElement.UnregisterName(System.String)
Namespace: System.Windows.Controls.DataVisualization.Charting
Assembly: Controls.DataVisualization.OpenSilver.dll
Syntax
public class ScatterSeries : DataPointSingleSeriesWithAxes, ISeries, IRequireSeriesHost, IDataProvider, IRangeProvider, IAxisListener, IValueMarginProvider, IRequireGlobalSeriesIndex
Constructors
| Improve this Doc View SourceScatterSeries()
Initializes a new instance of the ScatterSeries class.
Declaration
public ScatterSeries()
Fields
| Improve this Doc View SourceDependentRangeAxisProperty
Identifies the DependentRangeAxis dependency property.
Declaration
public static readonly DependencyProperty DependentRangeAxisProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
IndependentAxisProperty
Identifies the IndependentAxis dependency property.
Declaration
public static readonly DependencyProperty IndependentAxisProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
Properties
| Improve this Doc View SourceActualDependentRangeAxis
Gets the dependent axis as a range axis.
Declaration
public IRangeAxis ActualDependentRangeAxis { get; }
Property Value
Type | Description |
---|---|
IRangeAxis |
ActualIndependentAxis
Gets the independent axis as a range axis.
Declaration
public IAxis ActualIndependentAxis { get; }
Property Value
Type | Description |
---|---|
IAxis |
DependentRangeAxis
Gets or sets the dependent range axis.
Declaration
public IRangeAxis DependentRangeAxis { get; set; }
Property Value
Type | Description |
---|---|
IRangeAxis |
IndependentAxis
Gets or sets the independent range axis.
Declaration
public IAxis IndependentAxis { get; set; }
Property Value
Type | Description |
---|---|
IAxis |
Methods
| Improve this Doc View SourceCreateDataPoint()
Creates a new scatter data point.
Declaration
protected override DataPoint CreateDataPoint()
Returns
Type | Description |
---|---|
DataPoint | A scatter data point. |
Overrides
| Improve this Doc View SourceGetAxes(DataPoint)
Acquire a horizontal linear axis and a vertical linear axis.
Declaration
protected override void GetAxes(DataPoint firstDataPoint)
Parameters
Type | Name | Description |
---|---|---|
DataPoint | firstDataPoint | The first data point. |
Overrides
| Improve this Doc View SourceGetResourceDictionaryEnumeratorFromHost()
Returns the custom ResourceDictionary to use for necessary resources.
Declaration
protected override IEnumerator<ResourceDictionary> GetResourceDictionaryEnumeratorFromHost()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerator<ResourceDictionary> | ResourceDictionary to use for necessary resources. |
Overrides
| Improve this Doc View SourceUpdateDataPoint(DataPoint)
This method updates a single data point.
Declaration
protected override void UpdateDataPoint(DataPoint dataPoint)
Parameters
Type | Name | Description |
---|---|---|
DataPoint | dataPoint | The data point to update. |