mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
34 lines
997 B
C#
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 — 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 — right in left-to-right mode, left in right-to-left mode.
|
|
/// </summary>
|
|
End
|
|
}
|
|
}
|