var chart = c3.generate({ bindto: '#pkgchart', size: { height: 260 //width: 480 }, data: { columns: [ ['Trend',7,17,11,25,6,5,40], ['Bars',7,17,11,25,6,5,40] ], axes: { Bars: 'y2' }, types: { Bars: 'bar' // ADD }, colors: { Trend: 'green', Bars: 'orange' } }, axis: { y: { label: { text: 'Downloads for lubrilog', position: 'outer-middle' } }, y2: { show: false, label: { text: 'Y2 Label', position: 'outer-middle' } }, x: { type: 'category', categories: ['11/05','11/06','11/07','11/08','11/09','11/10','11/11'], tick: { rotate: -80, multiline: false } } } });