Table of Contents

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

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

signalItemCollection DomCollectionBase<SignalItemChart>

The collection to which the new item will be added.

index int

The 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

string

Background

Gets the background filling definition for the signal item.

[JsonInclude]
public PropertyFillingWithBitmap Background { get; }

Property Value

PropertyFillingWithBitmap

Max

Gets or sets the upper bound of the signal range.

public string Max { get; set; }

Property Value

string

Min

Gets or sets the lower bound of the signal range.

public string Min { get; set; }

Property Value

string

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

signalItemCollection DomCollectionBase<SignalItemChart>

The collection to which the item belongs.

index int

The index at which to insert the item.