[Answered ]-Highcharts using Django-Chartit. Chart lines not displayed without window resize, or Inspect Element

2👍

Update your Highcharts library version to newest one.

Current releases:
http://code.highcharts.com/

👤stpoa

0👍

The “not so delicate” solution here, is what finally solved it for me.

I added the following to my template:

<script>
    setTimeout(function() {$(window).resize();}, 0);
</script>

Leave a comment