0
這是從例如Highcharts代碼:Highcharts如何從服務器傳遞數據到圖表
$(document).ready(function() {
$(function() {
$('#container').highcharts({
chart: {
type: 'column',
margin: 75,
options3d: {
enabled: true,
alpha: 10,
beta: 25,
depth: 70
}
},
title: {
text: '@Model.FirstName'
},
plotOptions: {
column: {
depth: 25
}
},
xAxis: {
categories: Highcharts.getOptions().lang.shortMonths
},
yAxis: {
title: {
text: null
}
},
series: [{
name: 'Sales',
data: [2, 3, null, 4, 0, 5, 1, 4, 6, 3]
}],
credits: {
enabled: false
},
});
});
});
我想通過系列「的數據:[2,3,空,4,0,5,1,4- ,6,3]「和類別:來自服務器的」Highcharts.getOptions()。lang.shortMonths「。我該怎麼做?
什麼類型的服務器?什麼類型的網站? PHP? 。淨?神奇的祝福? :) –
淨。我只想知道如何通過Highcharts從服務器獲取信息。 – Yuriy
這只是問題的一半。 Highcharts支持通過URL指定數據源,但*需要提供數據*。 :) –