Class SignalItemChart
- Namespace
- combit.Reporting.Dom
- Assembly
- combit.ListLabel31.CrossPlatform.dll
Represents a single chart signal range item with min, max and appearance plus background filling.
public class SignalItemChart : SignalItemBase
- Inheritance
-
SignalItemChart
- Inherited Members
Constructors
SignalItemChart(DomCollectionBase<SignalItemChart>)
Creates and appends a new signal item to the specified collection.
public SignalItemChart(DomCollectionBase<SignalItemChart> signalItemCollection)
Parameters
signalItemCollectionDomCollectionBase<SignalItemChart>The collection to which the new item will be appended.
SignalItemChart(DomCollectionBase<SignalItemChart>, int)
Creates a new signal item at the specified index in the collection.
public SignalItemChart(DomCollectionBase<SignalItemChart> signalItemCollection, int index)
Parameters
signalItemCollectionDomCollectionBase<SignalItemChart>The collection to which the new item will be added.
indexintThe index at which to insert the new item.
Properties
Appearance
Gets or sets the appearance identifier for the signal item.
public string Appearance { get; set; }
Property Value
Background
Gets the background filling definition for the signal item.
[JsonInclude]
public PropertyFillingWithBitmap Background { get; }
Property Value
Max
Gets or sets the upper bound of the signal range.
public string Max { get; set; }
Property Value
Min
Gets or sets the lower bound of the signal range.
public string Min { get; set; }
Property Value
Methods
Initialize(DomCollectionBase<SignalItemChart>, int)
Internal initialization helper for creating and inserting a new signal item in a collection.
protected void Initialize(DomCollectionBase<SignalItemChart> signalItemCollection, int index)
Parameters
signalItemCollectionDomCollectionBase<SignalItemChart>The collection to which the item belongs.
indexintThe index at which to insert the item.