igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
23 lines (22 loc) • 959 B
TypeScript
import { Type } from "igniteui-angular-core";
/**
* Describes available behaviors for performing hit testing in the chart/map.
*/
export declare enum SeriesHitTestMode {
/**
* Automatically decide the appropriate hit test mode for the series.
*/
Auto = 0,
/**
* 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.
*/
Computational = 1,
/**
* 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.
*/
ColorEncoded = 2
}
/**
* @hidden
*/
export declare let SeriesHitTestMode_$type: Type;