igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
19 lines (18 loc) • 429 B
TypeScript
import { Type } from "igniteui-react-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;