UNPKG

igniteui-webcomponents-charts

Version:

Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.

28 lines (27 loc) 810 B
import { Path } from "igniteui-webcomponents-core"; import { TextBlock } from "igniteui-webcomponents-core"; import { IList$1, Type } from "igniteui-webcomponents-core"; import { Brush } from "igniteui-webcomponents-core"; /** * @hidden */ export interface ITrackThumbCalloutVisual { readonly calloutBox: Path; readonly calloutText: TextBlock; readonly allPaths: IList$1<Path>; width: number; height: number; translateX: number; translateY: number; textTranslateX: number; textTranslateY: number; isVisible: boolean; getCalloutBoxDefaultStroke(): Brush; getCalloutBoxDefaultStrokeThickness(): number; getCalloutBoxDefaultBrush(): Brush; getCalloutTextDefaultBrush(): Brush; } /** * @hidden */ export declare let ITrackThumbCalloutVisual_$type: Type;