igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
42 lines (41 loc) • 1.42 kB
TypeScript
import { Type } from "igniteui-angular-core";
/**
* Describes available modes for searching for items in the scatter series.
*/
export declare enum ScatterItemSearchMode {
/**
* Search mode is automatically determined by the component.
*/
Auto = 0,
/**
* When searching for a point, the closest visible point is selected.
*/
ClosestVisiblePoint = 1,
/**
* When searching for a point, the closest point is selected, whether visible or not.
* The search is skipped in performance critical scenarios if the number of points is over ItemSearchThreshold.
*/
ClosestPoint = 2,
/**
* When searching for a point, the closest visible point along the closest visible line is used.
* The search is skipped if the visible line points are over ItemSearchThreshold.
*/
ClosestVisiblePointOnClosestLine = 3,
/**
* When searching for a point, the closest point along the closest line is used.
* The search is skipped if the line points are over ItemSearchThreshold.
*/
ClosestPointOnClosestLine = 4,
/**
* When searching for a point, the topmost visible point is selected.
*/
TopVisiblePoint = 5,
/**
* No points will be searched for the in the scatter series.
*/
None = 6
}
/**
* @hidden
*/
export declare let ScatterItemSearchMode_$type: Type;