UNPKG

@visactor/vrender-components

Version:

components library for dp visualization

19 lines (18 loc) 740 B
import type { IGroupGraphicAttribute, ILineGraphicAttribute, ISymbolGraphicAttribute, ITextGraphicAttribute } from '@visactor/vrender-core'; export interface TimelineAttrs extends IGroupGraphicAttribute { width: number; times: { label: string; desc?: string; }[]; labelSpace?: number; symbolStyle?: Partial<ISymbolGraphicAttribute>; activeSymbolStyle?: Partial<ISymbolGraphicAttribute>; lineStyle?: Partial<ILineGraphicAttribute>; activeLineStyle?: Partial<ILineGraphicAttribute>; labelStyle?: Partial<ITextGraphicAttribute>; activeLabelStyle?: Partial<ITextGraphicAttribute>; pointLayoutMode?: 'space-around' | 'space-between'; clipRange?: number; animation?: boolean; }