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

29 lines
476 B
C#
Raw Normal View History

namespace Radzen;
/// <summary>
/// Specifies the size of a point in <see cref="Radzen.Blazor.RadzenTimelineItem" />.
/// </summary>
public enum PointSize
{
/// <summary>
/// The smallest.
/// </summary>
ExtraSmall,
/// <summary>
/// Smaller than the default.
/// </summary>
Small,
/// <summary>
/// The default size.
/// </summary>
Medium,
/// <summary>
/// Larger than the default.
/// </summary>
Large
}