From e615496c81cedc39c5ab6c9e8acdea510d7e3789 Mon Sep 17 00:00:00 2001 From: Kenneth van Ewijk Date: Tue, 20 Oct 2015 13:43:42 +0200 Subject: [PATCH] Changed size --- ErgometerApplication/ErgometerApplication/ChartPanel.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ErgometerApplication/ErgometerApplication/ChartPanel.cs b/ErgometerApplication/ErgometerApplication/ChartPanel.cs index 423df00..a9b459a 100644 --- a/ErgometerApplication/ErgometerApplication/ChartPanel.cs +++ b/ErgometerApplication/ErgometerApplication/ChartPanel.cs @@ -28,13 +28,13 @@ namespace ErgometerApplication this.Location = new System.Drawing.Point(0, 0); - this.Size = new System.Drawing.Size(250, 200); + this.Size = new System.Drawing.Size(400, 250); this.Controls.Add(chart); this.series = createSerie(); this.chartArea.Name = "chartArea"; - this.chart.Size = new System.Drawing.Size(250, 200); + this.chart.Size = new System.Drawing.Size(400, 250); this.chart.Dock = DockStyle.Fill; this.chart.Series.Add(series);