9 lines
222 B
C#
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;
|
|
}
|