igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
26 lines (25 loc) • 1.4 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";
/**
* Determines the item returned in hit-testing when mousing over an object which represents several consolidated items.
*/
export var ConsolidatedItemHitTestBehavior = /*@__PURE__*/ (function (ConsolidatedItemHitTestBehavior) {
/**
* Returns the item based on the X-location only. Will return one of the consolidated items.
*/
ConsolidatedItemHitTestBehavior[ConsolidatedItemHitTestBehavior["Basic"] = 0] = "Basic";
/**
* Returns the item with the nearest Y-location out of all the items with a matching X-location.
*/
ConsolidatedItemHitTestBehavior[ConsolidatedItemHitTestBehavior["NearestY"] = 1] = "NearestY";
return ConsolidatedItemHitTestBehavior;
})({});
/**
* @hidden
*/
export let ConsolidatedItemHitTestBehavior_$type = /*@__PURE__*/ markEnum('ConsolidatedItemHitTestBehavior', 'Basic,0|NearestY,1');