I am using Google chart (piechart) and want to start each legend on a new line - NOT like on the picture below:
here is my code:
var data = new google.visualization.arrayToDataTable(chartData, false);
var optionsErrorDetails = {
title: 'My Piechart',
fontSize: 10
,
pieHole: 0.3,
legend:
{
position: 'top',
alignment: 'start',
textStyle: {
fontSize: 8
},
},
};
var chartErrorDetails = new google.visualization.PieChart(document.getElementById('errorDetails'));
chartErrorDetails.draw(data, optionsErrorDetails);
