22 lines
659 B
C#
22 lines
659 B
C#
using RobotNet.WebApp.Charts.Enums;
|
|
using RobotNet.WebApp.Charts.Models.BarChart;
|
|
using RobotNet.WebApp.Charts.Models.Common;
|
|
|
|
namespace RobotNet.WebApp.Charts.Models.LineChart;
|
|
|
|
public class LineChartOptions : ChartOptions
|
|
{
|
|
/// <summary>
|
|
/// The base axis of the chart. 'x' for vertical charts and 'y' for horizontal charts.
|
|
/// Supported values are 'x' and 'y'.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Default value is <see langword="null"/>.
|
|
/// </remarks>
|
|
public IndexAxis IndexAxis { get; set; } = IndexAxis.X;
|
|
|
|
public LineChartPlugins Plugins { get; set; } = new();
|
|
|
|
public BarScales Scales { get; set; } = new();
|
|
}
|