InteractionMode Enumeration

Interaction modes for the chart.

Definition

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