我正在使用Highchart柱形图来显示每个月的访问者数量。我无法在高图表中附加数据。这些值不会动态附加。请帮我弄清楚&#39我的错误。
jQuery.ajax({
url :DashboardAjax.ajaxurl,
type: 'POST',
data: data,
//dataType: 'json',
success:function(data){
$('#highchart').highcharts({
chart: {
type: 'column'
},
title: {
text: 'No of Visitors per Month'
},
xAxis: {
categories: ['JAN', 'FEB', 'MAR', 'APR', 'MAY', 'JUN', 'JUL', 'AUG','SEP', 'OCT', 'NOV', 'DEC']
},
yAxis: {
min: 0,
title: {
text: 'visitors'
}
},
legend: {
enabled: false
},
tooltip: {
pointFormat: '',
},
series: [{
name: 'Analytics',
data: data,
dataLabels: {
enabled: true,
rotation: -90,
color: '#FFFFFF',
align: 'right',
x: 4,
y: 10,
style: {
fontSize: '13px',
fontFamily: 'Verdana, sans-serif',
textShadow: '0 0 3px black'
}
}
}]
});
}
});
请帮助解决这里的错误