InteractionMode Enumeration
Interaction modes for the chart.
Namespace: BlazorBootstrapAssembly: BlazorBootstrap (in BlazorBootstrap.dll) Version: 0.7+45c8d9adb5970d727cceec44a5ed61aea0016e50
public enum InteractionMode
| Dataset | 0 |
Finds items in the same dataset.
|
| Index | 1 |
Finds item at the same index.
|
| Nearest | 2 |
Gets the items that are at the nearest distance to the point.
|
| Point | 3 |
Finds all the items that intersect the point
|
| X | 4 |
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.
|
| Y | 5 |
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.
|