InteractionMode Enumeration

Interaction modes for the chart.

Definition

Namespace: BlazorBootstrap
Assembly: BlazorBootstrap (in BlazorBootstrap.dll) Version: 0.7+45c8d9adb5970d727cceec44a5ed61aea0016e50
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