UNPKG

igniteui-webcomponents-charts

Version:

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

25 lines (24 loc) 742 B
import { Path } from "igniteui-webcomponents-core"; import { IList$1, Type } from "igniteui-webcomponents-core"; import { TrackShadeOrientation } from "./TrackShadeOrientation"; import { Brush } from "igniteui-webcomponents-core"; /** * @hidden */ export interface ITrackShadeVisual { readonly shadeBox: Path; readonly shadeOutline: Path; readonly allPaths: IList$1<Path>; width: number; height: number; orientation: TrackShadeOrientation; translateX: number; translateY: number; getShadeBoxDefaultBrush(): Brush; getShadeOutlineDefaultBrush(): Brush; getShadeOutlineDefaultStrokeThickness(): number; } /** * @hidden */ export declare let ITrackShadeVisual_$type: Type;