using RobotNet.WebApp.Charts.Enums; using RobotNet.WebApp.Charts.Models.BarChart; using RobotNet.WebApp.Charts.Models.Common; namespace RobotNet.WebApp.Charts.Models.BubbleChart; public class BubbleChartOptions : ChartOptions { /// /// The base axis of the chart. 'x' for vertical charts and 'y' for horizontal charts. /// Supported values are 'x' and 'y'. /// /// /// Default value is . /// public IndexAxis IndexAxis { get; set; } = IndexAxis.X; public BubbleChartPlugins Plugins { get; set; } = new(); public BarScales Scales { get; set; } = new(); }