demo/Pages/Dashboard/Monitor/Components/Charts/Pie/Pie.razor.cs

13 lines
259 B
C#
Raw Normal View History

2024-06-21 16:48:24 +08:00
using Microsoft.AspNetCore.Components;
namespace antblazorpro.Pages.Dashboard.Monitor
{
public partial class Pie
{
[Parameter]
public bool? Animate { get; set; }
[Parameter]
public int? LineWidth { get; set; }
}
}