Skip to content

FieldColorSeriesByMode🔗

Defines how to assign a series color from "by value" color schemes. For example for an aggregated data points like a timeseries, the color can be assigned by the min, max or last value.

Definition🔗

type FieldColorSeriesByMode string
const (
    FieldColorSeriesByModeMin FieldColorSeriesByMode = "min"
    FieldColorSeriesByModeMax FieldColorSeriesByMode = "max"
    FieldColorSeriesByModeLast FieldColorSeriesByMode = "last"
)