@react-financial-charts/core
Version:
Core code for react-financial-charts
18 lines (16 loc) • 516 B
text/typescript
import { ScaleContinuousNumeric } from "d3-scale";
import type { ChartConfig } from "./utils/ChartDataUtil";
export interface MoreProps {
chartId: string | number;
hovering: boolean;
currentCharts: (string | number)[];
startPos?: [number, number];
mouseXY?: [number, number];
chartConfigs: ChartConfig[];
chartConfig?: ChartConfig;
fullData: any[];
plotData: any[];
xAccessor: (datum: any) => any;
xScale: Function;
yScale?: ScaleContinuousNumeric<number, number>;
}