chart.js从数据集标签修改样式

时间:2019-03-21 14:36:06

标签: javascript chart.js

(嘿!) 我发现JS和Chart.js,我需要从数据集中的标签更改字体大小和字体粗细,但是在文档或Google上找不到任何内容。谁能给我任何建议?

import Chart from 'chart.js'

let ctx = document.getElementById('rentResumeChart').getContext('2d');

let rentResumeChart = new Chart(ctx, {
responsive: true,
maintainAspectRatio: false,
type: 'bar',
data: {
    labels: ['Red', 'Blue', 'Yellow', 'Green', 'Purple', 'Orange'],
    datasets: [{
        label: '# of Votes', //this one
        data: [12, 19, 3, 5, 2, 3],
        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)',
            'rgba(255, 159, 64, 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)',
            'rgba(255, 159, 64, 1)'
        ],
        borderWidth: 1
    }]
},
options: {
    scales: {
        yAxes: [{
            ticks: {
                beginAtZero: true,
                fontSize: 25,
                fontStyle: 'bold'
            }
        }],
        xAxes: [{
            ticks: {
                fontSize: 25,
                fontStyle: 'bold'
            }
        }],
    },
}
});

1 个答案:

答案 0 :(得分:1)

您需要的内容可以在这里找到:here

请参阅下一个示例,如何使用它:

legend: {
    labels: {
       fontSize: 22
    }
}

只需在您的图表选项中添加代码,那么您的代码将如下所示:

options: {
    legend: {
        labels: {
            fontSize: 22
        }
    }
}