我正在使用highcharts進行餅圖。有一個在IE7中的腳本說了一個問題:無法獲取屬性「0」的值:對象在IE7中爲空或未定義
SCRIPT5007: Unable to get value of the property '0': object is null or undefined highcharts.js, line 10 character 3841
下面是代碼從腳本行:
if(typeof a[0]==="number")
this.x=a[0],this.y=a[1];
else if(d==="object"&&typeof a.length!=="number") {
if(u(this,a),this.options=a,a.dataLabels)c._hasPointLabels=!0
}
else if(typeof a[0]==="string")
this.name=a[0],this.y=a[1];
請問該如何解決這個問題?
您可以發佈您傳遞給Highcharts的選項嗎? –