Replication Steps
- First, download
HIGHCHARTS 4.1.9
from http://www.highcharts.com/download - Next, open the file
index.html
- Then, click on
Combinations > Advanced timeline
- An error message is displayed in Firebug and the chart does not appear:
ReferenceError: Highcharts is not defined /Highcharts-4.1.9/js/modules/exporting.js Line 24
ReferenceError: Highcharts is not defined /Highcharts-4.1.9/examples/combo-timeline/index.htm Line 280
Troubleshooting Steps Taken
I modified the script paths at the end of:
/Highcharts-4.1.9/examples/combo-timeline/index.html
From:
<script src="../../js/highstock.js"></script>
<script src="../../js/modules/exporting.js"></script>
To:
<script src="../js/highstock.js"></script>
<script src="../js/modules/exporting.js"></script>
Even after making these changes, the error persisted:
ReferenceError: Highcharts is not defined
/Highcharts-4.1.9/examples/combo-timeline/index.htm
Line 280
I also updated the jQuery reference in /combo-timeline/index.htm
from:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
To:
<script type="text/javascript" src="../js/jquery-1.11.3.js"></script>
However, this change resulted in a new error message:
ReferenceError: $ is not defined
/Highcharts-4.1.9/examples/combo-timeline/index.htm
Line 204