mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
25 lines
589 B
C#
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
|
|
}
|
|
} |