Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
joadan committed Nov 4, 2024
1 parent febbd59 commit 4fe2b33
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/Blazor-ApexCharts/ApexChart.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -459,11 +459,7 @@ protected override void OnParametersSet()
Options.Xaxis.Type = XAxisType;
}

if (string.IsNullOrEmpty(Title))
{
Options.Title = null;
}
else
if (Title != null)
{
if (Options.Title == null) { Options.Title = new Title(); }
Options.Title.Text = Title;
Expand Down

0 comments on commit 4fe2b33

Please sign in to comment.