igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
30 lines (29 loc) • 1.62 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 AutoMarginsAndAngleUpdateMode = /*@__PURE__*/ (function (AutoMarginsAndAngleUpdateMode) {
/**
* Auto margins and auto angle are for initial view only.
*/
AutoMarginsAndAngleUpdateMode[AutoMarginsAndAngleUpdateMode["None"] = 0] = "None";
/**
* Auto margins and auto angle are re-evaluated as the size of the component is altered.
*/
AutoMarginsAndAngleUpdateMode[AutoMarginsAndAngleUpdateMode["SizeChanging"] = 1] = "SizeChanging";
/**
* Auto margins and auto angle are re-evalueated as the size of the component changes, auto angles are re-evaluated when zoom changes, possibly leading to a margin update.
*/
AutoMarginsAndAngleUpdateMode[AutoMarginsAndAngleUpdateMode["SizeChangingAndZoom"] = 2] = "SizeChangingAndZoom";
return AutoMarginsAndAngleUpdateMode;
})({});
/**
* @hidden
*/
export let AutoMarginsAndAngleUpdateMode_$type = /*@__PURE__*/ markEnum('AutoMarginsAndAngleUpdateMode', 'None,0|SizeChanging,1|SizeChangingAndZoom,2');