Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

chart js title

var chart = new Chart(ctx, {
    type: 'line',
    data: data,
    options: {
        plugins: {
            title: {
                display: true,
                text: 'Custom Chart Title'
            }
        }
    }
});
Source by www.chartjs.org #
 
PREVIOUS NEXT
Tagged: #chart #js #title
ADD COMMENT
Topic
Name
6+4 =