mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
22 lines
644 B
C#
22 lines
644 B
C#
namespace Radzen.Blazor
|
|
{
|
|
/// <summary>
|
|
/// Specifies which data points display labels. Used by <see cref="RadzenSeriesDataLabels" />.
|
|
/// </summary>
|
|
public enum DataLabelDisplay
|
|
{
|
|
/// <summary>
|
|
/// Every data point displays a label (subject to <see cref="RadzenSeriesDataLabels.Step" /> and overlap hiding).
|
|
/// </summary>
|
|
All,
|
|
/// <summary>
|
|
/// Only the minimum and maximum values display labels.
|
|
/// </summary>
|
|
MinMax,
|
|
/// <summary>
|
|
/// Only the first and last data points display labels.
|
|
/// </summary>
|
|
FirstLast
|
|
}
|
|
}
|