react-financial-charts
Version:
React charts specific to finance.
20 lines (19 loc) • 561 B
TypeScript
import * as React from "react";
interface ScatterSeriesProps {
readonly className?: string;
readonly yAccessor: (data: any) => number;
readonly marker?: any;
readonly markerProvider?: any;
readonly markerProps?: object;
}
export declare class ScatterSeries extends React.Component<ScatterSeriesProps> {
static defaultProps: {
className: string;
};
render(): JSX.Element;
private readonly renderSVG;
private readonly drawOnCanvas;
private readonly helper;
private readonly drawOnCanvasHelper;
}
export {};