Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Mahi9492
Contributor
Contributor

Table Chart

I have Bild the table chart and and i want to change 1 row bold and 2nd row medium. How i can  do that can you help me on this urgent requirement. Thank you

Labels (1)
  • Chart

1 Reply
anat
Master
Master

try using below CSS script

.qv-st table th:first-child{
font-weight: bold;
}

You can replace td with tr for making specific row bold too.

.qv-st table td:nth-child(2){
font-weight: bold;

For Making column 2 and 4 bold use this

.qv-st table th:nth-child(3){
font-weight: bold;
}

.qv-st table th:nth-child(7){
font-weight: bold;
}

If you want values to be bold just replace th with td