react-financial-charts
Version:
React charts specific to finance.
37 lines (36 loc) • 944 B
TypeScript
import * as React from "react";
interface StochasticSeriesProps {
readonly className?: string;
readonly overBought?: number;
readonly overSold?: number;
readonly middle?: number;
readonly refLineOpacity?: number;
readonly stroke?: {
top: string;
middle: string;
bottom: string;
dLine: string;
kLine: string;
};
readonly yAccessor: any;
}
export declare class StochasticSeries extends React.Component<StochasticSeriesProps> {
static defaultProps: {
className: string;
stroke: {
top: string;
middle: string;
bottom: string;
dLine: string;
kLine: string;
};
overSold: number;
middle: number;
overBought: number;
refLineOpacity: number;
};
render(): JSX.Element;
private readonly yAccessorForK;
private readonly yAccessorForD;
}
export {};