react-ts-tradingview-widgets-fixed
Version:
This is a React component library for TradingView Widgets. TypeScript is fully supported for every component!
35 lines (34 loc) • 1.26 kB
TypeScript
import React from "react";
import { ChartType, ColorTheme, CopyrightStyles, Locales, ScaleMode, ScalePosition } from "../index";
export declare type SymbolOverviewProps = {
symbols?: string[][];
chartOnly?: boolean;
width?: string | number;
height?: string | number;
locale?: Locales;
colorTheme?: ColorTheme;
gridLineColor?: string;
fontColor?: string;
isTransparent?: boolean;
showFloatingTooltip?: boolean;
scalePosition?: ScalePosition;
scaleMode?: ScaleMode;
fontFamily?: "Trebuchet MS, sans-serif" | "Arial, sans-serif" | "Times, Times New Roman, serif" | "Andale Mono, monospace" | "Courier New, monospace" | "Comic Sans MS, Comic Sans, cursive" | "Trattatello, fantasy";
noTimeScale?: boolean;
chartType?: ChartType;
lineColor?: string;
bottomColor?: string;
topColor?: string;
upColor?: string;
downColor?: string;
borderUpColor?: string;
borderDownColor?: string;
wickUpColor?: string;
wickDownColor?: string;
autosize?: boolean;
container_id?: string;
children?: never;
copyrightStyles?: CopyrightStyles;
};
declare const SymbolOverview: React.FC<SymbolOverviewProps>;
export default SymbolOverview;