Skip to content

Commit 9295240

Browse files
author
Mischa Spelt
committed
Add default axis types to ChartAxesType.
(cherry picked from commit 248b81e)
1 parent cbf1b52 commit 9295240

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
@@ -169,6 +169,15 @@ public class Scales
169169
#endregion
170170
}
171171

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

0 commit comments

Comments
 (0)