-
Notifications
You must be signed in to change notification settings - Fork 107
Open
Description
Hello Blazor-ApexCharts,
My YAxisLabels are sometimes cut off as depicted in the below screenshot and video. Other times they appear correctly. It appears to be random whether they render properly or not.
Axis.Labels.mp4
I am using Height="450" without a width dimension within a MudGrid / MudItem.
<MudItem xs="12">
<ApexChart TItem=@ModYearsGenTotals
Height="450"
Options=@chartOptions>Below is the code for the YAxis. Thank you for any advice.
chartOptions.Yaxis = new List<YAxis>();
chartOptions.Yaxis.Add(new YAxis
{
Title = new AxisTitle
{
Text = strYAxisTitle,
Style = new AxisTitleStyle
{
FontWeight = "300",
FontSize = "18px"
}
},
Labels = new YAxisLabels
{
Formatter = "function(val) { return val.toLocaleString(); }",
Style = new AxisLabelStyle
{
FontWeight = "700"
}
}
});Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels