We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7333f7d commit 3b71540Copy full SHA for 3b71540
blazorbootstrap/Models/Charts/ChartOptions/ChartOptions.cs
@@ -475,6 +475,12 @@ private void SetTicksAlignment(TicksAlignment interactionMode) =>
475
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
476
public string? Color { get; set; }
477
478
+ /// <summary>
479
+ /// Font of ticks
480
+ /// </summary>
481
+ [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
482
+ public ChartFont? Font { get; set; } = new();
483
+
484
/// <summary>
485
/// If <see langword="true" />, show tick labels.
486
/// </summary>
0 commit comments