You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: blazorbootstrap/Models/Charts/ChartOptions/ChartOptions.cs
+23Lines changed: 23 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -148,11 +148,34 @@ public InteractionMode Mode
148
148
149
149
publicenumInteractionMode
150
150
{
151
+
/// <summary>
152
+
/// Finds items in the same dataset.
153
+
/// </summary>
151
154
Dataset,
155
+
156
+
/// <summary>
157
+
/// Finds item at the same index.
158
+
/// </summary>
152
159
Index,
160
+
161
+
/// <summary>
162
+
/// Gets the items that are at the nearest distance to the point.
163
+
/// </summary>
153
164
Nearest,
165
+
166
+
/// <summary>
167
+
/// Finds all of the items that intersect the point
168
+
/// </summary>
154
169
Point,
170
+
171
+
/// <summary>
172
+
/// 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.
173
+
/// </summary>
155
174
X,
175
+
176
+
/// <summary>
177
+
/// 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.
0 commit comments