igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
23 lines (22 loc) • 533 B
TypeScript
import { Type } from "igniteui-angular-core";
/**
* Describes available locations of the axis labels in the chart.
*/
export declare enum ZoomCoercionMode {
/**
* Zoom coercion mode is decided by the component.
*/
Auto = 0,
/**
* The zoom window is constrained to the axis bounds.
*/
AxisConstrained = 1,
/**
* The zoom window is unconstrained by the axis bounds.
*/
Unconstrained = 2
}
/**
* @hidden
*/
export declare let ZoomCoercionMode_$type: Type;