Class AlertLevel
Represents an alert level.
Inheritance
AlertLevel
Implements
Namespace: BiExcellence.OpenBi.Api.Commands.DataProviders
Assembly: BiExcellence.OpenBi.Api.DataProvider.dll
Syntax
public class AlertLevel : IAlertLevel
Constructors
AlertLevel(IAlertLevel)
Copy constructor.
Declaration
public AlertLevel(IAlertLevel alertLevel)
Parameters
| Type | Name | Description |
|---|---|---|
| IAlertLevel | alertLevel | The alert level. |
AlertLevel(int, double, double)
Initializes a new instance of the AlertLevel class.
Declaration
public AlertLevel(int id, double from, double to)
Parameters
| Type | Name | Description |
|---|---|---|
| int | id | The id. |
| double | from | The from value. |
| double | to | The to value. |
Properties
Color
Gets or sets the color.
Declaration
public string? Color { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
From
Gets or sets the from value.
Declaration
public double From { get; set; }
Property Value
| Type | Description |
|---|---|
| double |
Id
Gets or sets the id. (1-9)
Declaration
public int Id { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
To
Gets or sets the to value.
Declaration
public double To { get; set; }
Property Value
| Type | Description |
|---|---|
| double |