igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
27 lines (26 loc) • 566 B
TypeScript
import { Type } from "igniteui-angular-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;