summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Strasiotto <[email protected]>2021-05-01 20:22:45 +1000
committerMatthew Strasiotto <[email protected]>2021-05-01 20:22:45 +1000
commitfa12d9c4df758245c34fd61e910d148a83c81b04 (patch)
tree884dfc1c73da6aa9b4d88c8bea853c3018bfd001
parentImplement settings save/restore for streaming mode option (diff)
downloadrawaccel-fa12d9c4df758245c34fd61e910d148a83c81b04.tar.xz
rawaccel-fa12d9c4df758245c34fd61e910d148a83c81b04.zip
Update marker size for charts to be bigger
-rw-r--r--grapher/Models/Charts/ChartXY.cs4
1 files changed, 2 insertions, 2 deletions
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;