Skip to main content
7-Bedrock
April 29, 2025
Solved

CSS for KPI Dial value

  • April 29, 2025
  • 1 reply
  • 551 views

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.

 

SC_10187722_0-1745892865492.png

 

Best answer by Sathishkumar_C

The following CSS code is working,

@supports (ptcs-style-unit: "PTCS-KPI-DIAL") {
 [part=value]::part(label) {
 font-size: 16px;
 }
}

 

1 reply

17-Peridot
April 29, 2025

The following CSS code is working,

@supports (ptcs-style-unit: "PTCS-KPI-DIAL") {
 [part=value]::part(label) {
 font-size: 16px;
 }
}