From fa12d9c4df758245c34fd61e910d148a83c81b04 Mon Sep 17 00:00:00 2001 From: Matthew Strasiotto <39424834+matthewstrasiotto@users.noreply.github.com> Date: Sat, 1 May 2021 20:22:45 +1000 Subject: Update marker size for charts to be bigger --- grapher/Models/Charts/ChartXY.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'grapher/Models/Charts/ChartXY.cs') diff --git a/grapher/Models/Charts/ChartXY.cs b/grapher/Models/Charts/ChartXY.cs index d2247cb..969607c 100644 --- a/grapher/Models/Charts/ChartXY.cs +++ b/grapher/Models/Charts/ChartXY.cs @@ -160,9 +160,9 @@ namespace grapher title.Font = new System.Drawing.Font(title.Font.Name, global::grapher.Properties.Settings.Default.Chart_Font_Size, System.Drawing.FontStyle.Italic | System.Drawing.FontStyle.Bold); int line_width = global::grapher.Properties.Settings.Default.Chart_Series_Line_Width; chart.Series[0].BorderWidth = line_width; - chart.Series[0].MarkerSize = line_width; + chart.Series[0].MarkerSize = line_width * 2; chart.Series[2].BorderWidth = line_width; - chart.Series[2].MarkerSize = line_width; + chart.Series[2].MarkerSize = line_width * 2; area.AxisX.MinorGrid.Enabled = true; area.AxisX.MinorGrid.LineDashStyle = ChartDashStyle.Dot; -- cgit v1.2.3