igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
30 lines (29 loc) • 1.76 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 behaviors for performing hit testing in the chart/map.
*/
export var SeriesHitTestMode = /*@__PURE__*/ (function (SeriesHitTestMode) {
/**
* Automatically decide the appropriate hit test mode for the series.
*/
SeriesHitTestMode[SeriesHitTestMode["Auto"] = 0] = "Auto";
/**
* Use a computational based approach to determine whether the series has been hit. This uses loose bounding boxes, in some cases, and can range in time complexity between O(1) and O(log n) to find a hit. This decreases frame render time compared to color encoded.
*/
SeriesHitTestMode[SeriesHitTestMode["Computational"] = 1] = "Computational";
/**
* Use a color encoded off screen buffer for hit testing. Should always be O(1) time for determining a hit series. This increases frame render time and memory usage, however. Consider using this if hit testing time is degrading performance.
*/
SeriesHitTestMode[SeriesHitTestMode["ColorEncoded"] = 2] = "ColorEncoded";
return SeriesHitTestMode;
})({});
/**
* @hidden
*/
export var SeriesHitTestMode_$type = markEnum('SeriesHitTestMode', 'Auto,0|Computational,1|ColorEncoded,2');