var chart = c3.generate({ bindto: '#pkgchart', size: { height: 260 //width: 480 }, data: { columns: [ ['Trend',2750,2116,2069,3510,2898,3158,3141,2875,2010,2058,2732,2772,2796,2816,3033,2058,2010,2864,2916,3154,2908,2754,1905,2055,2754,2924,3274,2903,3180], ['Bars',2750,2116,2069,3510,2898,3158,3141,2875,2010,2058,2732,2772,2796,2816,3033,2058,2010,2864,2916,3154,2908,2754,1905,2055,2754,2924,3274,2903,3180] ], axes: { Bars: 'y2' }, types: { Bars: 'bar' // ADD }, colors: { Trend: 'green', Bars: 'orange' } }, axis: { y: { label: { text: 'Downloads for hunspell', position: 'outer-middle' } }, y2: { show: false, label: { text: 'Y2 Label', position: 'outer-middle' } }, x: { type: 'category', categories: ['09/06','09/07','09/08','09/09','09/10','09/11','09/12','09/13','09/14','09/15','09/16','09/17','09/18','09/19','09/20','09/21','09/22','09/23','09/24','09/25','09/26','09/27','09/28','09/29','09/30','10/01','10/02','10/03','10/04'], tick: { rotate: -80, multiline: false } } } });