Files
radzen-blazor/Radzen.Blazor/ColorScheme.cs
2021-10-29 15:09:43 +03:00

25 lines
589 B
C#

namespace Radzen.Blazor
{
/// <summary>
/// Specifies the <see cref="RadzenChart" /> color schemes used when rendering the series.
/// </summary>
public enum ColorScheme
{
/// <summary>
/// Pastel color scheme.
/// </summary>
Pastel,
/// <summary>
/// Palette color scheme.
/// </summary>
Palette,
/// <summary>
/// Divergent color scheme.
/// </summary>
Divergent,
/// <summary>
/// Monochrome color scheme
/// </summary>
Monochrome
}
}