Files
radzen-blazor/Radzen.Blazor/LegendPosition.cs

34 lines
997 B
C#

namespace Radzen.Blazor
{
/// <summary>
/// Specifies the legend position in a <see cref="RadzenChart" />.
/// </summary>
public enum LegendPosition
{
/// <summary>
/// The legend is at the right side of the series.
/// </summary>
Right,
/// <summary>
/// The legend is at the left side of the series.
/// </summary>
Left,
/// <summary>
/// The legend is above the series.
/// </summary>
Top,
/// <summary>
/// The legend is below the series.
/// </summary>
Bottom,
/// <summary>
/// The legend is at the inline-start side of the series &#8212; left in left-to-right mode, right in right-to-left mode.
/// </summary>
Start,
/// <summary>
/// The legend is at the inline-end side of the series &#8212; right in left-to-right mode, left in right-to-left mode.
/// </summary>
End
}
}