Reputation: 33
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.
Upvotes: 1
Views: 948
Reputation: 2245
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.
Upvotes: 1