chart js:GridLine不会显示在Barchart上

时间:2017-02-01 13:28:32

标签: javascript php chart.js silverstripe

我使用SilverStripe 4并使用Chart js(条形图)并且不显示gridLine。这是我的代码

var ctx = document.getElementById("plradar").getContext("2d");

var myRadarChart = new Chart(ctx, {
type: 'radar',
data: data,
options: {
        legend: {
            position: 'top',
        },
        title: {
            display: true,
            text: 'Degre'
        },
        scale: {
          ticks: {
            beginAtZero: true,
            min: 0,
            max: 5,
            stepSize: 1
        },
          pointLabels: {
            fontSize: 12
        }
        },
        elements: {
            point: {
                radius: 3
            }
        }
    }
});

结果

the barchart

有人可以建议如何更改我的代码吗?

0 个答案:

没有答案