@deltares/fews-web-oc-charts
Version:
FEWS Chart Library
23 lines (22 loc) • 729 B
TypeScript
import { CartesianAxes, PolarAxes } from '../index.js';
import { AxisIndex } from '../Axes/axes.js';
import { Chart } from './chart.js';
export declare class ChartArea extends Chart {
private _areaGenerator;
plotterCartesian(axis: CartesianAxes, axisIndex: AxisIndex): void;
plotterPolar(axis: PolarAxes, dataKeys: any): void;
drawLegendSymbol(legendId?: string, asSvgElement?: boolean): SVGRectElement | SVGSVGElement;
onPointerOver(): void;
onPointerOut(): void;
onPointerMove(x: number | Date, _xScale: any, _yScale: any): {
point: any;
style: {
color?: undefined;
};
} | {
point: any;
style: {
color: string;
};
};
}