DataFrame: insert null values along interval (#44622)

This commit is contained in:
Leon Sorokin
2022-02-02 10:25:49 -06:00
committed by GitHub
parent 0ab7097abc
commit 3504844ad7
8 changed files with 365 additions and 29 deletions

View File

@@ -67,6 +67,12 @@ export interface FieldConfig<TOptions = any> {
min?: number | null;
max?: number | null;
// Interval indicates the expected regular step between values in the series.
// When an interval exists, consumers can identify "missing" values when the expected value is not present.
// The grafana timeseries visualization will render disconnected values when missing values are found it the time field.
// The interval uses the same units as the values. For time.Time, this is defined in milliseconds.
interval?: number | null;
// Convert input values into a display string
mappings?: ValueMapping[];