在我的控制台窗口中,我得到 ReferenceError:图表未定义。
图表显示正确,因此不会出现一些重大问题。
如果我删除下面写的代码,错误就会消失,当然还有图表。
我正在使用highcharts。
有什么建议吗?
JS
getShownTab();
chart.series[0].update({ });
function getShownTab(){
$('#chartZoneDisplay').highcharts({
xAxis: {
categories: ['1.', '2.', '3.', '4.'],
title: {
text: 'Opravljene meritve'
},
},
yAxis: {
plotLines: [{
value: 0,
width: 1
}],
title: {
text: 'Kilogrami'
},
gridLineColor: "#222",
labels: {
padding: 0,
},
},
legend: {
layout: 'vertical',
align: 'center',
verticalAlign: 'bottom',
borderWidth: 0,
itemStyle: {
color: '#ccc'
},
itemHoverStyle: {
color: "#fab700"
}
},
series: [{
name: 'Telesna',
//data: [145, 122.9, 100.5, 105.5],
data: [<?php echo $parametri_telesna; ?>],
color: "#D1E24D",
dataLabels: {
enabled: true,
style: {
fontWeight: '300',
textOutline: '0px',
color: '#ccc'
}
}
}, {
name: 'Pusta',
data: [<?php echo $parametri_pusta; ?>],
color: "#F99A3B",
dataLabels: {
enabled: true,
style: {
fontWeight: '300',
textOutline: '0px',
color: '#ccc'
}
}
}],
chart: {
backgroundColor: '#000'
},
title: {
text: 'Gibanje teže',
align: 'left',
style: {
color: '#fab700'
}
},
});
}