Skip to content Skip to sidebar Skip to footer

Highcharts :the Code Works In Fiddle But Not I Visual Studio

I am very new to VS and Highcharts. So I need your help! I get the error below when I run my code in VS: Uncaught TypeError: Object [object Object] has no method 'highcharts' Hse:9

Solution 1:

Please look at the outputted html and check whether the url to highcharts.js is correct.

If not you should adjust

src="@Url.Content("/Scripts/ext/highcharts.js" 

accordingly. Your error message suggests that this is not the case.

Alternatively load from their cdn:

<scriptsrc="http://code.highcharts.com/highcharts.js"></script>

/Casper

Post a Comment for "Highcharts :the Code Works In Fiddle But Not I Visual Studio"