使用chart.js在条形图中应用背景颜色

时间:2016-09-20 10:37:10

标签: javascript chart.js

var myChart = new Chart(ctx, {
type: 'horizontalBar',
data: {
    labels:cmpny_timing,
    datasets: [{
        label: 'Hourly Attendance',
        data: d,
        backgroundColor: [
            'rgba(255, 99, 132, 0.2)',
            'rgba(54, 162, 235, 0.2)',
            'rgba(255, 206, 86, 0.2)',
            'rgba(75, 192, 192, 0.2)',
            'rgba(153, 102, 255, 0.2)'
        ],
        borderColor: [
            'rgba(255,99,132,1)',
            'rgba(54, 162, 235, 1)',
            'rgba(255, 206, 86, 1)',
            'rgba(75, 192, 192, 1)',
            'rgba(153, 102, 255, 1)
          ],
        borderWidth: 1
    }]
},

无论如何我可以根据数据更改每个栏的颜色....我想根据我的数据中的数据制作背景颜色我有一个长度为15的数组所以无论如何我可以创建15颜色条动态而不是硬编码chart.js的背景颜色属性

1 个答案:

答案 0 :(得分:4)

使用Chart.js plugins,您可以创建自己的backgroundColor& borderColor属性,然后将它们分配给图表:

var randomColorPlugin = {

    // We affect the `beforeUpdate` event
    beforeUpdate: function(chart) {
        var backgroundColor = [];
        var borderColor = [];

        // For every data we have ...
        for (var i = 0; i < chart.config.data.datasets[0].data.length; i++) {

            // We generate a random color
            var color = "rgba(" + Math.floor(Math.random() * 255) + "," + Math.floor(Math.random() * 255) + "," + Math.floor(Math.random() * 255) + ",";

            // We push this new color to both background and border color arrays
            // .. a lighter color is used for the background
            backgroundColor.push(color + "0.2)");
            borderColor.push(color + "1)");
        }

        // We update the chart bars color properties
        chart.config.data.datasets[0].backgroundColor = backgroundColor;
        chart.config.data.datasets[0].borderColor = borderColor;
    }
};

<小时/> 您可以看到一个有效的示例on this jsFiddle。每次运行代码时,您都会得到不同的颜色 这是结果之一:

enter image description here