<!--
There are many different attributes you can add to your HTML elements to control their appearance.
For example...
-->
<!--
Background Color
The oas-tag-bkg attribute on the element automatically sets the background based on a group of boolean values.
The 'all_f' setting is used when all values are FALSE.
The 'bad_q' setting is used when bad data quality is detected.
The 'group' lets you list a series of server tags background to associate when they are TRUE.
Since we just want to monitor one tag, only one item is in the group. Notice how all of the settings above define a 'color' listed as a valid HTML hex color. You can also define 'cls' for a CSS class, and 'style' for a custom inline style.
-->
<div id="bg1"
oas-tag-bkg='{"type":"group",
"all_f":{"color":"#F00"},
"bad_q":{"color":"#FC0"},
"group":[
{"tag":"Pump.Value","config":{"color":"#0C0"}}
]}'>
</div>