Gauge
- Last UpdatedJun 22, 2023
- 1 minute read
You can change style for HTML elements of Gauge using SVG elements and CSS classes.
|
HTML Element |
CSS Class |
|---|---|
|
Control Area |
.skga |
|
Gauge Area |
.skga-guage |
|
Gauge Value Labelr |
.skga-label |
Prefix the Custom Style Identifier of a control with the CSS Class name to apply the style to the specific control. For example:
/* E1 is the Custom Style Identifier of the Gauge control. */
.E1_skctr
Example
/* Change value label color to green and bold. */
.E1_skctr skga-label
{
font-weight:bold;
color: ‘green’;
}