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