@nova-ui/charts
Version:
Nova Charts is a library created to provide potential consumers with solutions for various data visualizations that conform with the Nova Design Language. It's designed to solve common patterns identified by UX designers, but also be very flexible so that
22 lines (21 loc) • 493 B
TypeScript
import { Numeric } from "d3-array";
/**
* Used for simplified threshold zone definition. It is expected the <code>start</code> to be <code>< end</code>.
*/
export interface ISimpleThresholdZone {
status: string;
start?: number;
end?: number;
}
export interface ZoneCross {
status: string;
start?: Numeric;
end?: Numeric;
}
/**
* Used for specifying the start or end boundary of a zone
*/
export declare enum ZoneBoundary {
Start = "start",
End = "end"
}