Chart.js - 如何在多行中显示标题?

时间:2018-03-28 19:43:12

标签: javascript chart.js

在chart.js中,如何在多行中显示标题,如下所示?我尝试使用title: 'Chart.js\nLine Chart''Chart.js<br>Line Chart',但他们没有工作。

enter image description here

1 个答案:

答案 0 :(得分:6)

尝试将title赋予string []数组,如下例所示。

var chart = new Chart(ctx, {
        type: 'line',
        data: data,
        options: {
            title: {
                display: true,
                text: ['Chart.js','Line Chart']
            }
        }
    })

请仔细阅读参考资料。 Apple's Documentation

http://www.chartjs.org/docs/latest/configuration/title.html

希望这会对你有所帮助。