igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
31 lines (30 loc) • 1.02 kB
TypeScript
import { Type } from "igniteui-angular-core";
/**
* Describes available locations of the axis labels in the chart.
*/
export declare enum AxisRangeBufferMode {
/**
* The range buffer mode of the axis is decided automatically.
*/
Auto = 0,
/**
* The range buffer of the axis is defined by the additional requirements of the series to avoid truncating visuals, including visible range margins.
*/
Series = 1,
/**
* The range minimum buffer of the axis is defined by the additional requirements of the series to avoid truncating visuals, including visible range margins.
*/
SeriesMinimum = 2,
/**
* The range maxium buffer of the axis is defined by the additional requirements of the series to avoid truncating visuals, including visible range margins.
*/
SeriesMaximum = 3,
/**
* No extra range buffer should be added.
*/
None = 4
}
/**
* @hidden
*/
export declare let AxisRangeBufferMode_$type: Type;