RobotNet/RobotNet.WebApp/Charts/Models/PolarAreaChart/PolarAreaChartDataset.cs
2025-10-15 15:15:53 +07:00

9 lines
222 B
C#

using RobotNet.WebApp.Charts.Models.Common.Dataset;
namespace RobotNet.WebApp.Charts.Models.PolarAreaChart;
public class PolarAreaChartDataset : ChartDataset<double>
{
public bool Circular { get; set; } = true;
}