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

25 lines
510 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 Gauge
{
[Parameter]
public string Title { get; set; }
[Parameter]
public string Color { get; set; }
[Parameter]
public int? Height { get; set; }
[Parameter]
public int? BgColor { get; set; }
[Parameter]
public int Percent { get; set; }
[Parameter]
public bool? ForceFit { get; set; }
}
}