I am currently attempting to modify the legend of my chart using Google API Chart.
My goal is to display the legend labels with a line break, like this: ReleaseVersion
3, and have them displayed in the UI as separate entities.
Version
3
I have tried various methods in the code below but have had no success:
data.addColumn('number', 'Version<br>2');
data.addColumn('number', 'Version'+document.write('<br/>')+'3');
data.addColumn('number', 'Version'+ document.createElement("br")+' 3');
Is there a way to split the label text using a line break tag or any other method?