var chart = c3.generate({ bindto: '#pkgchart', size: { height: 260 //width: 480 }, data: { columns: [ ['Trend',3822,3721,3734,3235,2522,2470,3683,3663,3788,3506,3621,2582,2797,3529,3857,3804,3915,3844,2768,2535,3589,3768,3922,3979,3323,2766,2566,3444,3450], ['Bars',3822,3721,3734,3235,2522,2470,3683,3663,3788,3506,3621,2582,2797,3529,3857,3804,3915,3844,2768,2535,3589,3768,3922,3979,3323,2766,2566,3444,3450] ], axes: { Bars: 'y2' }, types: { Bars: 'bar' // ADD }, colors: { Trend: 'green', Bars: 'orange' } }, axis: { y: { label: { text: 'Downloads for shinydashboard', position: 'outer-middle' } }, y2: { show: false, label: { text: 'Y2 Label', position: 'outer-middle' } }, x: { type: 'category', categories: ['10/08','10/09','10/10','10/11','10/12','10/13','10/14','10/15','10/16','10/17','10/18','10/19','10/20','10/21','10/22','10/23','10/24','10/25','10/26','10/27','10/28','10/29','10/30','10/31','11/01','11/02','11/03','11/04','11/05'], tick: { rotate: -80, multiline: false } } } });