Class SeriesColor
Series color configuration
public class SeriesColor
- Inheritance
-
SeriesColor
- Inherited Members
Constructors
SeriesColor()
public SeriesColor()
SeriesColor(int, int, int, int)
Create a new series color
public SeriesColor(int R, int G, int B, int A)
Parameters
R
intRed component (1-255)
G
intGreen component (1-255)
B
intBlue component (1-255)
A
intAlpha component (1-255)
Properties
A
Alpha component
public int A { get; set; }
Property Value
B
Blue component
public int B { get; set; }
Property Value
G
Green component
public int G { get; set; }
Property Value
IsDefault
Use default color defined by the chart
public bool IsDefault { get; set; }
Property Value
R
Red component
public int R { get; set; }
Property Value
Operators
implicit operator ColorStruct(SeriesColor)
Convert a series color to a native struct
public static implicit operator ColorStruct(SeriesColor clr)
Parameters
clr
SeriesColorColor to convert