|
static readonly GradientStops | TransparentToBlack = new GradientStops(new GradientStop(Colour.FromRgba(0, 0, 0, 0), 0), new GradientStop(Colour.FromRgb(0, 0, 0), 1)) |
| Gradient from transparent black (0) to opaque black (1). More...
|
|
static readonly GradientStops | WhiteToBlack = new GradientStops(new GradientStop(Colour.FromRgb(255, 255, 255), 0), new GradientStop(Colour.FromRgb(0, 0, 0), 1)) |
| Gradient from white (0) to black (1). More...
|
|
static readonly GradientStops | RedToGreen = new GradientStops(new GradientStop(Colour.FromRgb(237, 28, 36), 0), new GradientStop(Colour.FromRgb(34, 177, 76), 1)) |
| Gradient from red (0) to green (1). More...
|
|
static readonly GradientStops | Rainbow = new GradientStops(new GradientStop(Colour.FromRgb(237, 28, 36), 0), new GradientStop(Colour.FromRgb(255, 127, 39), 1.0 / 6), new GradientStop(Colour.FromRgb(255, 242, 0), 1.0 / 3), new GradientStop(Colour.FromRgb(34, 177, 76), 0.5), new GradientStop(Colour.FromRgb(0, 162, 232), 2.0 / 3), new GradientStop(Colour.FromRgb(63, 72, 204), 5.0 / 6), new GradientStop(Colour.FromRgb(163, 73, 164), 1)) |
| Rainbow gradient (red, orange, yellow, green, blue, indigo, violet). More...
|
|
static readonly GradientStops | RedYellowGreen = new GradientStops(new GradientStop(Colour.FromRgb(237, 28, 36), 0), new GradientStop(Colour.FromRgb(255, 242, 0), 0.5), new GradientStop(Colour.FromRgb(34, 177, 76), 1)) |
| Gradient from red (0) to yellow (0.5) to green (1). More...
|
|
static readonly GradientStops | OkabeItoRainbow = new GradientStops(new GradientStop(Colour.FromRgb(204, 121, 167), 0), new GradientStop(Colour.FromRgb(213, 94, 0), 1.0 / 6), new GradientStop(Colour.FromRgb(230, 159, 0), 1.0 / 3), new GradientStop(Colour.FromRgb(240, 228, 66), 0.5), new GradientStop(Colour.FromRgb(0, 158, 115), 2.0 / 3), new GradientStop(Colour.FromRgb(0, 114, 178), 5.0 / 6), new GradientStop(Colour.FromRgb(86, 180, 233), 1)) |
| Rainbow gradient with Okabe-Ito colour-blind safe colours (). More...
|
|
static readonly GradientStops | OkabeItoRainbowDiscrete = new GradientStops(new GradientStop(Colour.FromRgb(204, 121, 167), 0), new GradientStop(Colour.FromRgb(204, 121, 167), 0.2), new GradientStop(Colour.FromRgb(230, 159, 0), 0.201), new GradientStop(Colour.FromRgb(230, 159, 0), 0.4), new GradientStop(Colour.FromRgb(0, 158, 115), 0.401), new GradientStop(Colour.FromRgb(0, 158, 115), 0.6), new GradientStop(Colour.FromRgb(0, 114, 178), 0.601), new GradientStop(Colour.FromRgb(0, 114, 178), 0.8), new GradientStop(Colour.FromRgb(86, 180, 233), 0.801), new GradientStop(Colour.FromRgb(86, 180, 233), 1)) |
| Rainbow gradient with Okabe-Ito colour-blind safe colours () in discrete steps. More...
|
|
static readonly GradientStops | MutedRainbow = new GradientStops(new GradientStop(Colour.FromRgb(221, 204, 119), 0), new GradientStop(Colour.FromRgb(153, 153, 51), 0.125), new GradientStop(Colour.FromRgb(17, 119, 51), 0.25), new GradientStop(Colour.FromRgb(68, 170, 153), 0.375), new GradientStop(Colour.FromRgb(136, 204, 238), 0.5), new GradientStop(Colour.FromRgb(51, 34, 136), 0.625), new GradientStop(Colour.FromRgb(170, 68, 153), 0.75), new GradientStop(Colour.FromRgb(136, 34, 85), 0.875), new GradientStop(Colour.FromRgb(204, 102, 119), 1)) |
| Rainbow gradient with Paul Tol's Muted palette (). More...
|
|
static readonly GradientStops | MutedRainbowDiscrete = new GradientStops(new GradientStop(Colour.FromRgb(187, 187, 187), 0.101), new GradientStop(Colour.FromRgb(187, 187, 187), 0.1), new GradientStop(Colour.FromRgb(221, 204, 119), 0.101), new GradientStop(Colour.FromRgb(221, 204, 119), 0.2), new GradientStop(Colour.FromRgb(153, 153, 51), 0.201), new GradientStop(Colour.FromRgb(153, 153, 51), 0.3), new GradientStop(Colour.FromRgb(17, 119, 51), 0.301), new GradientStop(Colour.FromRgb(17, 119, 51), 0.4), new GradientStop(Colour.FromRgb(68, 170, 153), 0.401), new GradientStop(Colour.FromRgb(68, 170, 153), 0.5), new GradientStop(Colour.FromRgb(136, 204, 238), 0.501), new GradientStop(Colour.FromRgb(136, 204, 238), 0.6), new GradientStop(Colour.FromRgb(51, 34, 136), 0.601), new GradientStop(Colour.FromRgb(51, 34, 136), 0.7), new GradientStop(Colour.FromRgb(170, 68, 153), 0.701), new GradientStop(Colour.FromRgb(170, 68, 153), 0.8), new GradientStop(Colour.FromRgb(136, 34, 85), 0.801), new GradientStop(Colour.FromRgb(136, 34, 85), 0.9), new GradientStop(Colour.FromRgb(204, 102, 119), 0.901), new GradientStop(Colour.FromRgb(204, 102, 119), 1)) |
| Rainbow gradient with Paul Tol's Muted palette () in discrete steps. More...
|
|
static readonly GradientStops | Magma = new GradientStops(from el in Enumerable.Range(0, 21) let ind = (int)Math.Round(12.75 * el) select new GradientStop(Colour.FromRgb(MagmaRGB[ind, 0], MagmaRGB[ind, 1], MagmaRGB[ind, 2]), el * 0.05)) |
| Magma gradient, based on the homonymous colour scale included in the "viridis" R package (). More...
|
|
static readonly GradientStops | Inferno = new GradientStops(from el in Enumerable.Range(0, 21) let ind = (int)Math.Round(12.75 * el) select new GradientStop(Colour.FromRgb(InfernoRGB[ind, 0], InfernoRGB[ind, 1], InfernoRGB[ind, 2]), el * 0.05)) |
| Inferno gradient, based on the homonymous colour scale included in the "viridis" R package (). More...
|
|
static readonly GradientStops | Plasma = new GradientStops(from el in Enumerable.Range(0, 21) let ind = (int)Math.Round(12.75 * el) select new GradientStop(Colour.FromRgb(PlasmaRGB[ind, 0], PlasmaRGB[ind, 1], PlasmaRGB[ind, 2]), el * 0.05)) |
| Plasma gradient, based on the homonymous colour scale included in the "viridis" R package (). More...
|
|
static readonly GradientStops | Viridis = new GradientStops(from el in Enumerable.Range(0, 21) let ind = (int)Math.Round(12.75 * el) select new GradientStop(Colour.FromRgb(ViridisRGB[ind, 0], ViridisRGB[ind, 1], ViridisRGB[ind, 2]), el * 0.05)) |
| Viridis gradient, based on the homonymous colour scale included in the "viridis" R package (). More...
|
|
static readonly GradientStops | Cividis = new GradientStops(from el in Enumerable.Range(0, 21) let ind = (int)Math.Round(12.75 * el) select new GradientStop(Colour.FromRgb(CividisRGB[ind, 0], CividisRGB[ind, 1], CividisRGB[ind, 2]), el * 0.05)) |
| Cividis gradient, based on the homonymous colour scale included in the "viridis" R package (). More...
|
|
static readonly GradientStops | Rocket = new GradientStops(from el in Enumerable.Range(0, 21) let ind = (int)Math.Round(12.75 * el) select new GradientStop(Colour.FromRgb(RocketRGB[ind, 0], RocketRGB[ind, 1], RocketRGB[ind, 2]), el * 0.05)) |
| Rocket gradient, based on the homonymous colour scale included in the "viridis" R package (). More...
|
|
static readonly GradientStops | Mako = new GradientStops(from el in Enumerable.Range(0, 21) let ind = (int)Math.Round(12.75 * el) select new GradientStop(Colour.FromRgb(MakoRGB[ind, 0], MakoRGB[ind, 1], MakoRGB[ind, 2]), el * 0.05)) |
| Mako gradient, based on the homonymous colour scale included in the "viridis" R package (). More...
|
|
static readonly GradientStops | Turbo = new GradientStops(from el in Enumerable.Range(0, 21) let ind = (int)Math.Round(12.75 * el) select new GradientStop(Colour.FromRgb(TurboRGB[ind, 0], TurboRGB[ind, 1], TurboRGB[ind, 2]), el * 0.05)) |
| Turbo gradient, based on the homonymous colour scale included in the "viridis" R package (). More...
|
|