Posted on: 8/3/2014 3:00:33 PM | Views : 419

I have to auto adjust width..because i am using highchart inside Div
here is my code:
$(function () { $('#container').highcharts({ chart: { type: 'bar' }, title: { text: 'Report' }, xAxis: { categories: ['Total dispatched', 'Total Recived', 'Total Dispatched','Total Received'] }, yAxis: { title: { text: '' } }, series: [{ name: '2009', data: [1120, 1429, 0,0] }, { name: '2010', data: [66543, 72363, 53,93] }, { name: '2011', data: [110091, 116643, 3079,3527] }, { name: '2012', data: [73849, 77307, 5005,5323] }, { name: '2013', ...

Go to the complete details ...