Skip to content

Commit

Permalink
moved area series icon slightly lower;
Browse files Browse the repository at this point in the history
  • Loading branch information
Meragon committed Apr 10, 2020
1 parent 7bbccab commit 022bd38
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Controls/Highcharts/SeriesAreaSolid.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
}
2 changes: 1 addition & 1 deletion Controls/Highcharts/SeriesAreaSolidOutline.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
}

0 comments on commit 022bd38

Please sign in to comment.