react-financial-charts
Version:
React charts specific to finance.
34 lines (33 loc) • 784 B
TypeScript
import * as React from "react";
interface PointAndFigureSeriesProps {
readonly className?: string;
readonly clip?: boolean;
readonly fill?: {
up: string;
down: string;
};
readonly stroke?: {
up: string;
down: string;
};
readonly strokeWidth?: number;
}
export declare class PointAndFigureSeries extends React.Component<PointAndFigureSeriesProps> {
static defaultProps: {
className: string;
strokeWidth: number;
stroke: {
up: string;
down: string;
};
fill: {
up: string;
down: string;
};
clip: boolean;
};
render(): JSX.Element;
private readonly renderSVG;
private readonly drawOnCanvas;
}
export {};