我正在将django-controlcenter用于仪表板,但LineChart的默认线宽有点太粗。是否可以自定义线宽?顺便说一句,我检查了chartist.js,有一些线型的配置选项,但是在django-controlcenter中找不到任何位置。
/* Use this selector to override the line style on a given series */
.ct-series-a .ct-line {
/* Set the colour of this series line */
stroke: red;
/* Control the thikness of your lines */
stroke-width: 5px;
/* Create a dashed line with a pattern */
stroke-dasharray: 10px 20px;
}