-
Notifications
You must be signed in to change notification settings - Fork 0
/
FillStyle.cs
72 lines (62 loc) · 1.72 KB
/
FillStyle.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
using System.ComponentModel;
using System.Drawing;
using System.Drawing.Drawing2D;
namespace SuperPerformanceChart
{
[TypeConverter(typeof(ExpandableObjectConverter))]
public class FillStyle
{
public Color StartColor { get; set; }
public Color EndColor { get; set; }
public int GradientAngle { get; set; } = 270;
public int Alpha { get; set; } = 120;
public bool Visible { get; set; } = true;
public FillStyle(Color color)
{
StartColor = color;
EndColor = color;
}
public FillStyle() : this(Color.CornflowerBlue)
{
}
/* TODO ERROR: Skipped RegionDirectiveTrivia */
internal Brush GetFillBrush(RectangleF rt)
{
if (ActualEndColor == Color.Empty || ActualEndColor == ActualStartColor)
{
// this is not a gradient
return new SolidBrush(ActualStartColor);
}
else
{
return new LinearGradientBrush(rt, ActualStartColor, ActualEndColor, GradientAngle);
}
}
internal Pen GetLinePen()
{
return new Pen(EndColor, 2);
}
internal Color ActualStartColor
{
get
{
return Color.FromArgb(Alpha, StartColor);
}
}
internal Color ActualEndColor
{
get
{
return Color.FromArgb(Alpha, EndColor);
}
}
internal bool HasGradient
{
get
{
return StartColor != EndColor;
}
}
/* TODO ERROR: Skipped EndRegionDirectiveTrivia */
}
}