react-financial-charts
Version:
React charts specific to finance.
27 lines (26 loc) • 743 B
TypeScript
import * as React from "react";
interface AxisLineProps {
readonly className?: string;
readonly shapeRendering?: string;
readonly orient: string;
readonly scale: any;
readonly outerTickSize?: number;
readonly fill?: string;
readonly stroke?: string;
readonly strokeWidth?: number;
readonly opacity?: number;
readonly range: number[];
}
export declare class AxisLine extends React.Component<AxisLineProps> {
static defaultProps: {
className: string;
shapeRendering: string;
fill: string;
stroke: string;
strokeWidth: number;
opacity: number;
};
static drawOnCanvasStatic: (props: any, ctx: any) => void;
render(): JSX.Element;
}
export {};