How to change the font size of the value of KPI Dial? Trying to change with some custom CSS (with ptcs style unit) it's not working.
Solved! Go to Solution.
The following CSS code is working,
@supports (ptcs-style-unit: "PTCS-KPI-DIAL") {
[part=value]::part(label) {
font-size: 16px;
}
}
The following CSS code is working,
@supports (ptcs-style-unit: "PTCS-KPI-DIAL") {
[part=value]::part(label) {
font-size: 16px;
}
}