react-financial-charts
Version:
React charts specific to finance.
33 lines (32 loc) • 742 B
TypeScript
import * as React from "react";
interface KagiSeriesProps {
readonly className?: string;
readonly fill?: {
yang: string;
yin: string;
};
readonly stroke?: {
yang: string;
yin: string;
};
readonly strokeWidth?: number;
}
export declare class KagiSeries extends React.Component<KagiSeriesProps> {
static defaultProps: {
className: string;
strokeWidth: number;
stroke: {
yang: string;
yin: string;
};
fill: {
yang: string;
yin: string;
};
currentValueStroke: string;
};
render(): JSX.Element;
private readonly renderSVG;
private readonly drawOnCanvas;
}
export {};