我正在尝试使用在另一台服务器(或确切地说是端口)上运行的 API 将数据加载到 ng2-admin 模板中的一些图表中。
我在 lineChart.service.ts 中的代码如下:
return {
type: 'serial',
theme: 'blur',
marginTop: 15,
marginRight: 15,
responsive: {
'enabled': true
},
dataLoader: {
url: 'http://localhost:4000/reporting/temperatures',
format: 'json',
showErrors: true,
noStyles: true,
async: true
},
categoryField: 'MeasureMoment',
categoryAxis: {
parseDates: true,
gridAlpha: 0,
inside: true,
color: layoutColors.defaultText,
axisColor: layoutColors.defaultText
},
valueAxes: [
{
minVerticalGap: 50,
gridAlpha: 0,
color: layoutColors.defaultText,
axisColor: layoutColors.defaultText,
labelFunction: this.formatLabel
}
],
graphs: [
{
id: 'g0',
bullet: 'none',
useLineColorForBulletBorder: true,
lineColor: colorHelper.hexToRgbA(graphColor, 0.3),
lineThickness: 1,
negativeLineColor: layoutColors.danger,
type: 'smoothedLine',
valueField: 'Temperature',
fillAlphas: 1,
fillColorsField: 'lineColor'
}
],
chartCursor: {
categoryBalloonDateFormat: 'MM YYYY',
categoryBalloonColor: '#4285F4',
categoryBalloonAlpha: 0.7,
cursorAlpha: 0,
valueLineEnabled: true,
valueLineBalloonEnabled: true,
valueLineAlpha: 0.5
},
dataDateFormat: 'MM YYYY',
export: {
enabled: true
},
creditsPosition: 'bottom-right',
zoomOutButton: {
backgroundColor: '#fff',
backgroundAlpha: 0
},
zoomOutText: '',
pathToImages: layoutPaths.images.amChart
};
这与默认页面没什么不同,除了数据的一部分,在原始模板中有一个 dataProvider 元素,其中包含数据,我用我之前成功使用过的 dataLoader 替换了它。
我用我的 API 返回的元素替换了 valueField 和 CategoryField 值。据我所知,这应该可以解决问题。当我重新加载页面时,我看不到任何图表。
我已经测试了返回数据的 API。每次调用 API 时,我都会在控制台中添加一个日志行,以显示发出请求。当 ng2-admin 页面重新加载时,我没有看到任何请求。
当我犯一些错误并看到错误消息时,我可以查看它,但没有任何错误消息。
我可以使用一些帮助来解决这个问题。如果需要更多信息,我很乐意分享。
谢谢!