Given this fiddle how do i change the color of the text labels in the graph. They are currently white (e.g. Aziz).
I have tried with here but that does not work
text {
fill: black;
}
I finally got it with this here
.dc-chart g.row text {
fill: black;
}
Why do I need such a complicated selector? Is this the best way to achieve this?