Class SeriesColorRange
Represents a Color Range object for passing to PickColor />
Inheritance
System.Object
SeriesColorRange
Namespace: Radzen.Blazor
Assembly: Radzen.Blazor.dll
Syntax
public class SeriesColorRange : object
Properties
Color
Gets or sets the color of the range.
Declaration
public string Color { get; set; }
Property Value
Type | Description |
---|---|
System.String | The color. |
Max
Gets or sets the maximum value of the range. Null will use default double.Max
Declaration
public double Max { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The maximum. |
Min
Gets or sets the minimum value of the range. Null will use default double.Min
Declaration
public double Min { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The minimum. |