Chartwerk Line Pod
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
356 B

export type MarkerElem = [number, any?];
export type MarkerSerie = {
10 months ago
color: string;
9 months ago
// TODO: make one-dimensional array with only x
data: MarkerElem[] // [x, payload] payload is any data for tooltip
10 months ago
}
export type MarkersConf = {
series: MarkerSerie[],
events?: {
onMouseMove?: (el: MarkerElem[]) => void;
onMouseOut?: () => void;
}
}