chart-0714
Version:
Professional trading chart library with advanced customization for trading journal apps
43 lines (42 loc) • 957 B
TypeScript
export interface Theme {
backgroundColor: string;
textColor: string;
gridColor: string;
borderColor: string;
candle: {
upColor: string;
downColor: string;
borderUpColor: string;
borderDownColor: string;
wickUpColor: string;
wickDownColor: string;
};
volume: {
upColor: string;
downColor: string;
};
crosshair: {
color: string;
labelBackgroundColor: string;
labelTextColor: string;
labelBackground?: string;
};
selection: {
backgroundColor: string;
borderColor: string;
};
background?: string;
grid?: string;
text?: string;
axis?: {
text?: string;
line?: string;
dividerColor?: string;
unifiedColor?: string;
textColor?: string;
};
candleUp?: string;
candleDown?: string;
candleUpWick?: string;
candleDownWick?: string;
}