如何在ChartJS中用点使虚线粗线?可能吗?

时间:2019-02-04 09:52:04

标签: javascript chart.js

我尝试在文档中找到此功能。我知道如何设置虚线或虚线,但是我找不到它们的组合。

enter image description here

1 个答案:

答案 0 :(得分:0)

可以通过将此borderDash: [10, 10]属性添加到折线图中的每个数据集来绘制虚线。您可以看到以下代码或小提琴-> http://jsfiddle.net/fcwbjy57/

var ctx = document.getElementById("myChart").getContext('2d');
var myChart = new Chart(ctx, {
    type: 'line',
    data: {
        labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
        datasets: [{
            label: '# of Votes',
            data: [12, 19, 3, 5, 2, 3],
            backgroundColor: 'rgba(255, 99, 132, 0.2)',              
            borderColor: 'rgba(255,99,132,1)',
            borderWidth: 1,
            borderDash: [10, 10],
            fill: false
        },{
            label: '# of Votes1',
            data: [17, 9, 13, 9, 20, 13],
            backgroundColor: 'rgba(54, 162, 235, 0.2)',              
            borderColor: 'rgba(54, 162, 235, 1)',
            borderWidth: 1,
            borderDash: [10, 10],
            fill: false
        },{
            label: '# of Votes2',
            data: [1, 6, 13, 12, 20, 5],
            backgroundColor: 'rgba(255, 206, 86, 0.2)',               
            borderColor: 'rgba(255, 206, 86, 1)',
            borderWidth: 1,
            borderDash: [10, 10],
            fill: false
        }]
    },
    options: {
        scales: {
            yAxes: [{
                ticks: {
                    beginAtZero:true
                }
            }]
        }
    }
});