I am working with React-Js Application and using ChartistJs Library to show the Charts. I am trying to change the color and Font of Lables in Bar Chart but unable to find any options to achieve that.
Asked
Active
Viewed 821 times
1 Answers
1
I think you can do something like this in your CSS file:
.ct-label {
color: red;
font-size: 15px;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
I hope it helps.

Ben
- 2,060
- 9
- 21