diff --git a/Mqtt-Dashboard/Tracings/Graph.cs b/Mqtt-Dashboard/Tracings/Graph.cs index e5c0945..a52bcaa 100644 --- a/Mqtt-Dashboard/Tracings/Graph.cs +++ b/Mqtt-Dashboard/Tracings/Graph.cs @@ -20,7 +20,6 @@ namespace Dashboard.Tracings { Panel panel = new Panel(); this.chart = new Chart(); - ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit(); ChartArea chartArea = new ChartArea(); chartArea.AxisX.LabelStyle.Enabled = false; chartArea.AxisX.LineColor = System.Drawing.Color.Gainsboro; @@ -51,7 +50,6 @@ namespace Dashboard.Tracings { this.chart.Location = new System.Drawing.Point(0, 0); this.chart.Size = new System.Drawing.Size(200, 100); panel.Controls.Add(this.chart); - ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit(); panel.Size = new System.Drawing.Size(200, 100); return panel; diff --git a/Mqtt-Dashboard/bin/Release/Dashboard.exe b/Mqtt-Dashboard/bin/Release/Dashboard.exe index 5a27e58..a57b537 100644 Binary files a/Mqtt-Dashboard/bin/Release/Dashboard.exe and b/Mqtt-Dashboard/bin/Release/Dashboard.exe differ