InteractionMode Enumeration

Interaction modes for the chart.

Definition

Namespace: BlazorBootstrap
Assembly: BlazorBootstrap (in BlazorBootstrap.dll) Version: 0.8+34f1bbd8dc6b32752cfce829cbed66e15113d7ba
public enum InteractionMode

Members

Dataset0 Finds items in the same dataset.
Index1 Finds item at the same index.
Nearest2 Gets the items that are at the nearest distance to the point.
Point3 Finds all the items that intersect the point
X4 Returns all items that would intersect based on the X coordinate of the position only. Would be useful for a vertical cursor implementation. Note that this only applies to cartesian charts.
Y5 Returns all items that would intersect based on the Y coordinate of the position. This would be useful for a horizontal cursor implementation. Note that this only applies to cartesian charts.

See Also