UNPKG

igniteui-react-charts

Version:

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

27 lines (26 loc) 564 B
import { Type } from "igniteui-react-core"; /** * Represents the type of sparkline */ export declare enum SparklineDisplayType { /** * Display the sparkline as a line. */ Line = 0, /** * Display the sparkline as a filled polygon. */ Area = 1, /** * Display the sparkline as a set of columns. */ Column = 2, /** * Display the sparkline as a set of columns on a boolean scale. */ WinLoss = 3 } /** * @hidden */ export declare let SparklineDisplayType_$type: Type;