Skip to content

Commit

Permalink
Fixed Height in XaxisAxisBorder
Browse files Browse the repository at this point in the history
  • Loading branch information
joadan committed Sep 7, 2021
1 parent c014991 commit d91d488
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions samples/DemoCharts/Pages/DateTimeChart.razor
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@
OffsetY = 5,
Text = "Month",
Style = new XAxistTitleStyle { FontSize = "14px", Color = "lightgrey" }
},
AxisBorder = new XaxisAxisBorder
{
Height = 2
}

};
Expand Down
2 changes: 1 addition & 1 deletion src/Blazor-ApexCharts/Models/ApexChartOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1227,7 +1227,7 @@ public class XaxisAxisBorder
public double? OffsetX { get; set; }
public double? OffsetY { get; set; }
public bool? Show { get; set; }
public double? StrokeWidth { get; set; }
public double? Height { get; set; }
}

public class XaxisAxisTicks
Expand Down

0 comments on commit d91d488

Please sign in to comment.