Show / Hide Table of Contents

Class DefinitionSeries.IndependentValueGroup

Represents an independent value and the dependent values that are associated with it.

Inheritance
System.Object
DefinitionSeries.IndependentValueGroup
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: System.Windows.Controls.DataVisualization.Charting
Assembly: OpenSilver.Controls.DataVisualization.Toolkit.dll
Syntax
protected class IndependentValueGroup

Constructors

| Improve this Doc View Source

IndependentValueGroup(Object, IEnumerable<DefinitionSeries.DataItem>)

Initializes a new instance of the IndependentValueGroup class.

Declaration
public IndependentValueGroup(object independentValue, IEnumerable<DefinitionSeries.DataItem> dataItems)
Parameters
Type Name Description
System.Object independentValue

Independent value.

System.Collections.Generic.IEnumerable<DefinitionSeries.DataItem> dataItems

Associated DataItems.

Properties

| Improve this Doc View Source

DataItems

Gets a sequence of DataItems associated with the independent value.

Declaration
public IEnumerable<DefinitionSeries.DataItem> DataItems { get; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<DefinitionSeries.DataItem>
| Improve this Doc View Source

Denominator

Gets or sets the denominator to use when computing with this instance.

Declaration
public double Denominator { get; set; }
Property Value
Type Description
System.Double
Remarks

Exists here purely to simplify the the corresponding algorithm.

| Improve this Doc View Source

IndependentValue

Gets the independent value.

Declaration
public object IndependentValue { get; }
Property Value
Type Description
System.Object
  • Improve this Doc
  • View Source