UNPKG

chart-0714

Version:

Professional trading chart library with advanced customization for trading journal apps

29 lines (28 loc) 590 B
/** * 라인 시리즈 타입 정의 */ export type LineSeries = LineSeriesData; export interface LineSeriesData { id: string; name: string; data: Array<{ time: number; value: number; }>; color: string; lineWidth: number; priceScaleId: 'left' | 'right'; visible: boolean; lastValue?: number; } export interface LineSeriesOptions { name: string; color?: string; lineWidth?: number; priceScaleId?: 'left' | 'right'; visible?: boolean; } export interface LineSeriesStyle { color?: string; lineWidth?: number; }