So I am initializing a zingChart with the following code.
barChartData =
"type":"bar"
"series":[
"values":[11,16,7,-14,11,24,-42,26,]
]
$("#performance-bar-chart").zingchart(
data: barChartData
)
The barchart is rendered correctly but the width doesn't seem to much the parent div. I've checked if anything is setting the height and width but nothing is.
When I zoom in or out on the page (ctrl + mouse scroll) the chart automatically expands to fill the parent div!
Thank you,