react-financial-charts
Version:
React charts specific to finance.
20 lines (19 loc) • 527 B
TypeScript
import * as React from "react";
interface TextProps {
readonly children: string;
readonly fontFamily: string;
readonly fontSize: number;
readonly fill: string;
readonly selected?: boolean;
readonly xyProvider: (moreProps: any) => number[];
}
export declare class Text extends React.Component<TextProps> {
static defaultProps: {
selected: boolean;
};
render(): JSX.Element;
private readonly isHover;
private readonly drawOnCanvas;
private readonly renderSVG;
}
export {};