igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
19 lines (18 loc) • 431 B
TypeScript
import { Type } from "igniteui-angular-core";
/**
* Enumeration that determines whether the axis extent measures in pixels or percentage.
*/
export declare enum AxisExtentType {
/**
* Axis extent measured in pixels
*/
Pixel = 0,
/**
* Axis extent measured as a percentage of the chart's size
*/
Percent = 1
}
/**
* @hidden
*/
export declare let AxisExtentType_$type: Type;