SetPlotBGColor (Reserved Word)
This reserved word is used to change the background plot color of a particular RadarScreen cell.
SetPlotBGColor(Number, Color);
Number is a number from 1 to 99 representing the number of the plot to modify. Color is the EasyLanguage color to be used for the plot.
Example
The following EasyLanguage statements color a cell's background green when Condition1 is true ("Bullish"), and red when it is false ("Bearish").
If Condition1 then begin
Txt = "Bullish";
SetPlotBGColor(1, green);
end
else begin
Txt = "Bearish";
SetPlotBGColor(1, red);
end;