@deltares/fews-web-oc-charts
Version:
FEWS Chart Library
23 lines (22 loc) • 784 B
TypeScript
import { CartesianAxes, PolarAxes } from '../index.js';
import { Chart } from './chart.js';
export declare class ChartLine extends Chart {
defaultToolTipFormatterCartesian(d: any): HTMLElement;
defaultToolTipFormatterPolar(d: any): HTMLElement;
plotterCartesian(axis: CartesianAxes, axisIndex: any): void;
plotterPolar(axis: PolarAxes, axisIndex: any): void;
drawLegendSymbol(_legendId?: string, asSvgElement?: boolean): SVGLineElement | SVGSVGElement;
onPointerOver(): void;
onPointerOut(): void;
onPointerMove(value: number | Date, key: 'x' | 'y', xScale: any, yScale: any): {
point: any;
style: {
color?: undefined;
};
} | {
point: any;
style: {
color: string;
};
};
}