Table of Contents

Class SeriesColor

Namespace
LiveScope.Net
Assembly
LiveScope.Net.dll

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 int

Red component (1-255)

G int

Green component (1-255)

B int

Blue component (1-255)

A int

Alpha component (1-255)

Properties

A

Alpha component

public int A { get; set; }

Property Value

int

B

Blue component

public int B { get; set; }

Property Value

int

G

Green component

public int G { get; set; }

Property Value

int

IsDefault

Use default color defined by the chart

public bool IsDefault { get; set; }

Property Value

bool

R

Red component

public int R { get; set; }

Property Value

int

Operators

implicit operator ColorStruct(SeriesColor)

Convert a series color to a native struct

public static implicit operator ColorStruct(SeriesColor clr)

Parameters

clr SeriesColor

Color to convert

Returns

ColorStruct