Class SignalItem
- Namespace
- combit.Reporting.Dom
- Assembly
- combit.ListLabel31.CrossPlatform.dll
Represents an individual signal range entry (min/max value range with color definitions) for signal charts/gauges.
public class SignalItem : SignalItemBase
- Inheritance
-
SignalItem
- Inherited Members
Constructors
SignalItem(DomCollectionBase<SignalItem>)
Creates and appends a new signal item to the specified collection.
public SignalItem(DomCollectionBase<SignalItem> signalItemCollection)
Parameters
signalItemCollectionDomCollectionBase<SignalItem>The collection to which the new signal item will be appended.
SignalItem(DomCollectionBase<SignalItem>, int)
Creates and inserts a new signal item at the given index in the specified collection.
public SignalItem(DomCollectionBase<SignalItem> signalItemCollection, int index)
Parameters
signalItemCollectionDomCollectionBase<SignalItem>The collection in which to insert the new signal item.
indexintThe zero-based index at which the new signal item will be inserted.
Properties
Max
Gets or sets the maximum value expression for the range.
public string Max { get; set; }
Property Value
MaxColor
Gets or sets the color expression applied at the maximum boundary.
public string MaxColor { get; set; }
Property Value
Min
Gets or sets the minimum value expression for the range.
public string Min { get; set; }
Property Value
MinColor
Gets or sets the color expression applied at the minimum boundary.
public string MinColor { get; set; }
Property Value
Methods
Initialize(DomCollectionBase<SignalItem>, int)
Internal initializer method for creating and inserting a signal item in a collection.
protected void Initialize(DomCollectionBase<SignalItem> signalItemCollection, int index)
Parameters
signalItemCollectionDomCollectionBase<SignalItem>The collection in which to insert the signal item.
indexintThe index at which to insert the signal item.