我使用highcharts time series,我需要添加另一个从不同的json文件/链接填充的数据系列,这可能吗?
这是我的代码:
$(function () {
$.getJSON('myfirstjson', function (data) {
mydata = [];
$('#tvmtgm').highcharts({
chart: {
zoomType: 'x'
},
title: {
text: 'TVM/TGM'
},
xAxis: {
type: 'datetime',
dateTimeLabelFormats : {
hour: '%I %p',
minute: '%I:%M %p'
}
},
yAxis: {
title: {
text: 'Moves'
}
},
legend: {
enabled: false
},
plotOptions: {
area: {
fillColor: {
linearGradient: {
x1: 0,
y1: 0,
x2: 0,
y2: 1
},
stops: [
[0, Highcharts.getOptions().colors[0]],
[1, Highcharts.Color(Highcharts.getOptions().colors[0]).setOpacity(0).get('rgba')]
]
},
marker: {
radius: 2
},
lineWidth: 1,
states: {
hover: {
lineWidth: 1
}
},
threshold: null
}
},
series: [{
type: 'area',
name: 'Total vessel moves',
data: data
}
]
});
});
});
在highcharts网站上有一些例子,但它们都是静态数据系列,我需要从json请求填充这两个数据系列
答案 0 :(得分:2)
是的,你可以。当然,我希望我理解你的问题。
This link向您展示如何添加多个y轴。
至于获取数据。 $.when
可以帮助你。
.service('$cordovaScreenshot', ['$q', function($q) {
return {
capture: function(filename, extension, quality) {
extension = extension || 'jpg';
quality = quality || '100';
var defer = $q.defer();
console.log(defer);
navigator.screenshot.save(function(error, res) {
if (error) {
console.error(error);
defer.reject(error);
} else {
console.log('screenshot saved in: ', res.filePath);
defer.resolve(res.filePath);
}
}, extension, quality, filename);
return defer.promise;
}
};
}]);