I’m trying to render a graph with HighCharts and even though it is a wonderful library, I’m having issues with IE (strange… 🙁 ), due to the fact that the library ignores the height that I set in the style attribute of my div container and overflows the expected sizes.
<div id="graficoVolumi" style="width: 100%; height: 400px">
</div>
I don’t have this issue in Firefox or Chrome, in which the graph actually fits the dimensions set in the style attribute.
Has anyone expereinced this issue?
I had the same problem, the way I solve it was to force the width and height of the chart.
By default the width is calculated from the offset width of the containing element.
HighCharts width Reference
Hope it helps