Skip to content

Commit 248b81e

Browse files
author
Mischa Spelt
committed
Add default axis types to ChartAxesType.
1 parent 9004b91 commit 248b81e

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

blazorbootstrap/Models/Charts/ChartOptions/ChartOptions.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,15 @@ public class Scales
171171
#endregion
172172
}
173173

174+
public class ChartAxesType
175+
{
176+
public static readonly string Linear = "linear";
177+
public static readonly string Logarithmic = "logarithmic";
178+
public static readonly string Category = "category";
179+
public static readonly string Time = "time";
180+
public static readonly string Timeseries = "timeseries";
181+
}
182+
174183
public class ChartAxes
175184
{
176185
#region Properties, Indexers

0 commit comments

Comments
 (0)