我想问一下如何使用Chartjs库配置图表,以便以正确的方式获得与下图相似的结果?我试图在文档http://www.chartjs.org/docs/#line-chart-chart-options中找到任何选项,但没有运气。
非常感谢您的任何建议。
答案 0 :(得分:1)
Chart.js版本2+
在scales.x | yAxes.gridLines配置对象中使用 borderDash 属性。
示例:
var options = {
scales: {
xAxes: [{
gridLines: {
display: true,
lineWidth: 1,
borderDash: [1, 2],
color: "black"
}
}],
yAxes: [{
gridLines: {
display: true,
lineWidth: 1,
borderDash: [1, 2],
color: "black"
}
}],
}
}