mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
23 lines
956 B
C#
23 lines
956 B
C#
namespace Radzen.Blazor
|
|
{
|
|
/// <summary>
|
|
/// Specifies when <see cref="RadzenChart" /> displays tooltips. Used by <see cref="RadzenChartTooltipOptions" />.
|
|
/// </summary>
|
|
public enum ChartTooltipTrigger
|
|
{
|
|
/// <summary>
|
|
/// Uses <see cref="Axis" /> when the category axis crosshair is enabled or the chart belongs to a <see cref="RadzenChart.SyncGroup" />; otherwise <see cref="Point" />.
|
|
/// </summary>
|
|
Auto,
|
|
/// <summary>
|
|
/// The tooltip is displayed when the cursor is near a data point (within <see cref="RadzenChart.TooltipTolerance" />).
|
|
/// </summary>
|
|
Point,
|
|
/// <summary>
|
|
/// The tooltip follows the nearest category - it is displayed for the data point closest to the cursor by horizontal distance,
|
|
/// anywhere inside the plot area. Matches the behavior of crosshairs and synchronized charts.
|
|
/// </summary>
|
|
Axis
|
|
}
|
|
}
|