'How to change the styles of a Pie Chart in Superset
How to change the color and font size in a pie chart with CSS?
I tried:
#chart-id-142 .dashboard {
font:44px/41px "Microsoft YaHei";font-size:44px;line-height:41px;font-family:"Microsoft YaHei";
}
Solution 1:[1]
Assuming that the pie chart you are referring to has the id "chart-id-142" and the inline style is "dashboard" this should work:
#chart-id-142.dashboard {
font-size: 44px;
line-height: 80%;
font-family: Arial, Helvetica, sans-serif;
}
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Mano |
