UNPKG

igniteui-react-charts

Version:

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

25 lines (24 loc) 718 B
import { Path } from "igniteui-react-core"; import { IList$1, Type } from "igniteui-react-core"; import { TrackShadeOrientation } from "./TrackShadeOrientation"; import { Brush } from "igniteui-react-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;