Ну, это довольно глубоко.
Мы можем найти эти вещи внутри документа chartkick
library> legend> label> fontColor
библиотека> шкалы> yAxes / xAxes> gridLines (?)> Цвет
import Chartkick, { LineChart } from "react-chartkick";
import "chart.js";
<LineChart
data={{ "2017-01-01": 11, "2017-01-02": 6, "2017-01-03": 20 }}
library={{
legend: {
labels: {
fontColor: "blue"
}
},
scales: {
xAxes: [
{
ticks: { fontColor: "blue" },
gridLines: { drawBorder: true, color: "blue" }
}
]
}
}}
/>