From 022bd38ead52c190b7711e8778392f3b18b4f25a Mon Sep 17 00:00:00 2001 From: Denis Date: Fri, 10 Apr 2020 14:14:37 +0300 Subject: [PATCH] moved area series icon slightly lower; --- Controls/Highcharts/SeriesAreaSolid.cs | 2 +- Controls/Highcharts/SeriesAreaSolidOutline.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Controls/Highcharts/SeriesAreaSolid.cs b/Controls/Highcharts/SeriesAreaSolid.cs index 99e1e5f..50e91b1 100644 --- a/Controls/Highcharts/SeriesAreaSolid.cs +++ b/Controls/Highcharts/SeriesAreaSolid.cs @@ -50,7 +50,7 @@ protected override void OnPaint(Graphics g, Rectangle clipRectangle) protected override void OnPaintIcon(Graphics g, Rectangle clipRectangle) { - g.uwfFillRectangle(color, clipRectangle.Left + 4, clipRectangle.Top + 4, 8, 8); + g.uwfFillRectangle(color, clipRectangle.Left + 4, clipRectangle.Top + 8, 8, 8); } } } \ No newline at end of file diff --git a/Controls/Highcharts/SeriesAreaSolidOutline.cs b/Controls/Highcharts/SeriesAreaSolidOutline.cs index 9ceacdb..1f4ea32 100644 --- a/Controls/Highcharts/SeriesAreaSolidOutline.cs +++ b/Controls/Highcharts/SeriesAreaSolidOutline.cs @@ -101,7 +101,7 @@ protected override void OnPaint(Graphics g, Rectangle clipRectangle) protected override void OnPaintIcon(Graphics g, Rectangle clipRectangle) { - g.uwfFillRectangle(color, clipRectangle.Left + 4, clipRectangle.Top + 4, 8, 8); + g.uwfFillRectangle(color, clipRectangle.Left + 4, clipRectangle.Top + 8, 8, 8); } } } \ No newline at end of file