Appearance
Clustered bar
Side-by-side bars for comparing series across categories.
js
{
chartType: 'clusteredBar',
isDataTransposed: true,
seriesData: [
['', 'Q1', 'Q2', 'Q3', 'Q4'],
['Revenue', 100, 112, 125, 140],
['Costs', 60, 66, 70, 78],
],
title: { visible: true, text: 'Revenue vs Costs' },
subtitle: { visible: false, text: '' },
}Horizontal
js
{
chartType: 'clusteredBar',
orientation: 'horizontal',
isDataTransposed: true,
seriesData: [/* same layout */],
title: { visible: true, text: 'Pageview Sources' },
subtitle: { visible: false, text: '' },
legend: { visible: false },
}See Orientation and the horizontal bar sample.
Sample
Live chart and copy-paste HTML: Clustered bar sample.