igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
38 lines (37 loc) • 1.74 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-angular-core";
/**
* Describes available positions on the crossing axis at which the category tooltip can be displayed.
*/
export var DataToolTipLayerPosition = /*@__PURE__*/ (function (DataToolTipLayerPosition) {
/**
* A position is selected automatically
*/
DataToolTipLayerPosition[DataToolTipLayerPosition["Auto"] = 0] = "Auto";
/**
* Displays at the outside start of the axis.
*/
DataToolTipLayerPosition[DataToolTipLayerPosition["OutsideStart"] = 1] = "OutsideStart";
/**
* Displays at the inside start of the axis.
*/
DataToolTipLayerPosition[DataToolTipLayerPosition["InsideStart"] = 2] = "InsideStart";
/**
* Displays at the inside end of the axis.
*/
DataToolTipLayerPosition[DataToolTipLayerPosition["InsideEnd"] = 3] = "InsideEnd";
/**
* Displays at the outside end of the axis.
*/
DataToolTipLayerPosition[DataToolTipLayerPosition["OutsideEnd"] = 4] = "OutsideEnd";
return DataToolTipLayerPosition;
})({});
/**
* @hidden
*/
export var DataToolTipLayerPosition_$type = markEnum('DataToolTipLayerPosition', 'Auto,0|OutsideStart,1|InsideStart,2|InsideEnd,3|OutsideEnd,4');