Tamour Ali
Tamour Ali

Reputation: 33

How To Change the Color and Font Of Labels of Bar Chart Using ChartistJs Library with ReactJs

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

Answers (1)

Ben
Ben

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

Related Questions