react-financial-charts
Version:
React charts specific to finance.
31 lines (30 loc) • 784 B
TypeScript
import * as React from "react";
interface SARSeriesProps {
readonly className?: string;
readonly fill?: {
falling: string;
rising: string;
};
readonly yAccessor: any;
readonly opacity?: number;
readonly onClick?: any;
readonly onDoubleClick?: any;
readonly onContextMenu?: any;
readonly highlightOnHover?: boolean;
}
export declare class SARSeries extends React.Component<SARSeriesProps> {
static defaultProps: {
className: string;
fill: {
falling: string;
rising: string;
};
highlightOnHover: boolean;
opacity: number;
};
render(): JSX.Element;
private readonly renderSVG;
private readonly drawOnCanvas;
private readonly isHover;
}
export {};