mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
23 lines
710 B
C#
23 lines
710 B
C#
namespace Radzen.Blazor
|
|
{
|
|
/// <summary>
|
|
/// Specifies the visual treatment of data labels. Used by <see cref="RadzenSeriesDataLabels" />.
|
|
/// </summary>
|
|
public enum DataLabelAppearance
|
|
{
|
|
/// <summary>
|
|
/// The label renders on a rounded background chip - readable over series fills and gradients.
|
|
/// </summary>
|
|
Chip,
|
|
/// <summary>
|
|
/// The label text renders with an outline halo in the chart background color - lighter than a chip
|
|
/// while remaining readable over series fills.
|
|
/// </summary>
|
|
Outline,
|
|
/// <summary>
|
|
/// The label renders as plain text.
|
|
/// </summary>
|
|
Plain
|
|
}
|
|
}
|