var chart = c3.generate({ bindto: '#pkgchart', size: { height: 260 //width: 480 }, data: { columns: [ ['Trend',3,3,6,1,6,1,6,1,1], ['Bars',3,3,6,1,6,1,6,1,1] ], axes: { Bars: 'y2' }, types: { Bars: 'bar' // ADD }, colors: { Trend: 'green', Bars: 'orange' } }, axis: { y: { label: { text: 'Downloads for miraculix', position: 'outer-middle' } }, y2: { show: false, label: { text: 'Y2 Label', position: 'outer-middle' } }, x: { type: 'category', categories: ['10/09','10/10','10/16','10/21','10/24','10/28','10/30','10/31','11/05'], tick: { rotate: -80, multiline: false } } } });