I\'m doing a responsive pie chart which holds title in centered position inside it.I\'ve used,
title: { text: \"\", margin: 0,
We can customize any properties of title using chart.setTitle() as shown below.I've added a title and set useHTML property to true.
chart: { events: { load: function () { this.setTitle({text: 'Title',useHTML:true}); } } }