reactjschartsbar-chartchartist.jsreact-chartist

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.


Solution

  • 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.