1

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.

Tamour Ali
  • 33
  • 8

1 Answers1

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