如何使用带有 ReactJs 的 ChartistJs 库更改条形图标签的颜色和字体

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

我正在使用 React-Js 应用程序并使用 ChartistJs 库来显示图表。 我正在尝试更改条形图中标签的颜色和字体,但找不到任何选项来实现。

我想你可以在你的 CSS 文件中做这样的事情:

.ct-label {
    color: red;
    font-size: 15px;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}

希望对您有所帮助。