When i am using I.E explorer chart is opening withing div but
when i used chrome highchart is going out of Div.
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',
...
Go to the complete details ...