Table of Contents

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

signalItemCollection DomCollectionBase<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

signalItemCollection DomCollectionBase<SignalItem>

The collection in which to insert the new signal item.

index int

The 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

string

MaxColor

Gets or sets the color expression applied at the maximum boundary.

public string MaxColor { get; set; }

Property Value

string

Min

Gets or sets the minimum value expression for the range.

public string Min { get; set; }

Property Value

string

MinColor

Gets or sets the color expression applied at the minimum boundary.

public string MinColor { get; set; }

Property Value

string

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

signalItemCollection DomCollectionBase<SignalItem>

The collection in which to insert the signal item.

index int

The index at which to insert the signal item.