igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
30 lines (29 loc) • 1.5 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { markEnum } from "igniteui-react-core";
/**
* Describes available locations of the axis labels in the chart.
*/
export var ComputedPlotAreaMarginMode = /*@__PURE__*/ (function (ComputedPlotAreaMarginMode) {
/**
* Computed plot area margin mode is determined by the component.
*/
ComputedPlotAreaMarginMode[ComputedPlotAreaMarginMode["Auto"] = 0] = "Auto";
/**
* 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.
*/
ComputedPlotAreaMarginMode[ComputedPlotAreaMarginMode["Series"] = 1] = "Series";
/**
* There is no automatic determination of the plot area margin.
*/
ComputedPlotAreaMarginMode[ComputedPlotAreaMarginMode["None"] = 2] = "None";
return ComputedPlotAreaMarginMode;
})({});
/**
* @hidden
*/
export let ComputedPlotAreaMarginMode_$type = /*@__PURE__*/ markEnum('ComputedPlotAreaMarginMode', 'Auto,0|Series,1|None,2');