Class SeriesDefinition
Defines the attributes of a series that is to be rendered by the DefinitionSeries class.
Inherited Members
Namespace: System.Windows.Controls.DataVisualization.Charting
Assembly: Controls.DataVisualization.OpenSilver.dll
Syntax
public class SeriesDefinition : FrameworkElement, ISeries, IRequireSeriesHost, IRequireGlobalSeriesIndex
Constructors
| Improve this Doc View SourceSeriesDefinition()
Initializes a new instance of the SeriesDefinition class.
Declaration
public SeriesDefinition()
Fields
| Improve this Doc View SourceActualDataPointStyleProperty
Identifies the ActualDataPointStyle dependency property.
Declaration
public static readonly DependencyProperty ActualDataPointStyleProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
ActualDataShapeStyleProperty
Identifies the ActualDataShapeStyle dependency property.
Declaration
public static readonly DependencyProperty ActualDataShapeStyleProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
ActualLegendItemStyleProperty
Identifies the ActualDataPointStyle dependency property.
Declaration
public static readonly DependencyProperty ActualLegendItemStyleProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
ActualTitleProperty
Identifies the ActualTitle dependency property.
Declaration
public static readonly DependencyProperty ActualTitleProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
DataPointStyleProperty
Identifies the DataPointStyle dependency property.
Declaration
public static readonly DependencyProperty DataPointStyleProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
DataShapeStyleProperty
Identifies the DataShapeStyle dependency property.
Declaration
public static readonly DependencyProperty DataShapeStyleProperty
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 SourceActualDataPointStyle
Gets the rendered DataPoint Style for the series definition.
Declaration
public Style ActualDataPointStyle { get; protected set; }
Property Value
Type | Description |
---|---|
Style |
ActualDataShapeStyle
Gets the rendered DataShape Style for the series definition.
Declaration
public Style ActualDataShapeStyle { get; protected set; }
Property Value
Type | Description |
---|---|
Style |
ActualLegendItemStyle
Gets the rendered LegendItem Style for the series definition.
Declaration
public Style ActualLegendItemStyle { get; protected set; }
Property Value
Type | Description |
---|---|
Style |
ActualTitle
Gets the rendered Title of the series definition.
Declaration
public object ActualTitle { get; protected set; }
Property Value
Type | Description |
---|---|
System.Object |
DataPointStyle
Gets or sets the DataPoint Style for the series definition.
Declaration
public Style DataPointStyle { get; set; }
Property Value
Type | Description |
---|---|
Style |
DataShapeStyle
Gets or sets the DataShape Style for the series definition.
Declaration
public Style DataShapeStyle { get; set; }
Property Value
Type | Description |
---|---|
Style |
DependentValueBinding
Gets or sets the Binding to use for identifying the dependent value.
Declaration
public Binding DependentValueBinding { get; set; }
Property Value
Type | Description |
---|---|
Binding |
DependentValuePath
Gets or sets the Binding Path to use for identifying the dependent value.
Declaration
public string DependentValuePath { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IndependentValueBinding
Gets or sets the Binding to use for identifying the independent value.
Declaration
public Binding IndependentValueBinding { get; set; }
Property Value
Type | Description |
---|---|
Binding |
IndependentValuePath
Gets or sets the Binding Path to use for identifying the independent value.
Declaration
public string IndependentValuePath { get; set; }
Property Value
Type | Description |
---|---|
System.String |
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 LegendItem Style for the series definition.
Declaration
public Style LegendItemStyle { get; set; }
Property Value
Type | Description |
---|---|
Style |
Title
Gets or sets the Title of the series definition.
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 |
Explicit Interface Implementations
| Improve this Doc View SourceIRequireGlobalSeriesIndex.GlobalSeriesIndexChanged(Nullable<Int32>)
Handles changes to the global series index of the series definition.
Declaration
void IRequireGlobalSeriesIndex.GlobalSeriesIndexChanged(int? globalIndex)
Parameters
Type | Name | Description |
---|---|---|
System.Nullable<System.Int32> | globalIndex | New index. |
IRequireSeriesHost.SeriesHost
Gets or sets the SeriesHost for the series definition.
Declaration
ISeriesHost IRequireSeriesHost.SeriesHost { get; set; }
Returns
Type | Description |
---|---|
ISeriesHost |
ISeries.LegendItems
Gets the collection of legend items for the series definition.
Declaration
ObservableCollection<object> ISeries.LegendItems { get; }
Returns
Type | Description |
---|---|
ObservableCollection<System.Object> |