8 lines
272 B
C#
8 lines
272 B
C#
using RobotNet.WebApp.Charts.Models.Common.Dataset;
|
|
|
|
namespace RobotNet.WebApp.Charts.Models.PolarAreaChart;
|
|
|
|
public class PolarAreaChartDatasetData(string? datasetLabel, double data, string? backgroundColor) : ChartDatasetData(datasetLabel, data, backgroundColor)
|
|
{
|
|
}
|