diff options
| -rw-r--r-- | grapher/Models/Charts/ChartXY.cs | 4 |
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; |