Hi,
is it possible to change the color of the error bars of all columns, e.g.
into black?
If you take this as an easy playground example:
function drawVisualization() {
// Create and populate the data table.
data = new google.visualization.DataTable()
data.addColumn('string', 'Version');
data.addColumn('number', 'Runtime');
data.addColumn({type:'number', role:'interval'});
data.addColumn({type:'number', role:'interval'});
data.addRows([
['A',5,4,6],
['B',11,9,13],
['C',22,21.5,22],
['D',41,36,43.5]
]);
new google.visualization.BarChart(document.getElementById('visualization')
).
draw(data, {
legend : 'none',
width : 700,
height : 500
});
}
I have not found any way to make them more visuable.
Thanks,
Stefan
--
You received this message because you are subscribed to the Google Groups
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at
http://groups.google.com/group/google-visualization-api?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.