igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
23 lines (22 loc) • 667 B
TypeScript
import { Type } from "igniteui-angular-core";
/**
* Describes available locations of the axis labels in the chart.
*/
export declare enum ComputedPlotAreaMarginMode {
/**
* Computed plot area margin mode is determined by the component.
*/
Auto = 0,
/**
* The series in the chart are queried for their requested auto margins, including value maximum margins, if applicable, to incorporate into the plot area margin.
*/
Series = 1,
/**
* There is no automatic determination of the plot area margin.
*/
None = 2
}
/**
* @hidden
*/
export declare let ComputedPlotAreaMarginMode_$type: Type;