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 701b2de commit 06e492eCopy full SHA for 06e492e
src/Blazor-ApexCharts/ApexChart.razor.cs
@@ -76,16 +76,17 @@ protected override void OnParametersSet()
76
77
Options.Chart.Id = chartId;
78
Options.Debug = Debug;
79
-
80
- if (Width != null) {
+
+ if (Width != null)
81
+ {
82
Options.Chart.Width = Width;
83
}
84
85
if (Height != null)
86
{
87
Options.Chart.Height = Height;
88
89
90
if (XAxisType != null)
91
92
if (Options.Xaxis == null) { Options.Xaxis = new XAxis(); }
@@ -548,7 +549,7 @@ private MixedType GetMixedChartType(ChartType chartType)
548
549
550
551
- public void Dispose()
552
+ public virtual void Dispose()
553
554
GC.SuppressFinalize(this);
555
if (Options.Chart?.Id != null && isReady)
0 commit comments