can add 3 more rule
can add y distance
can add different color choice for rule
can add different font type for rule
can add different font size for rule
How to add custom color in this code
extern color color_Rule1 = clrRoyalBlue;
There are several ways to define a custom color:
Using RGB values:
extern color color_Rule1 = C'28,113,216'; // RGB format
// or
extern color color_Rule1 = RGB(28,113,216); // RGB function
"One man's trash is another man's treasure"