当我尝试使用 angular-nvd3 配置一个简单的折线图时,我遇到了一些严重的 nvd3 错误。
我编辑了给出的示例 plunker,似乎我的数据格式错误,因为仅交换选项仍然有效。
这是一个故障 plunkr: http ://plnkr.co/edit/fznNKBw6hwNYavfZ3Nvi?p=preview
选项:
$scope.options = {
"chart": {
"type": "lineChart",
"height": 450,
"useInteractiveGuideline": true,
"dispatch": {},
"xAxis": {
"axisLabel": "Months"
},
"yAxis": {
"axisLabel": "Team size",
}
}
};
数据:
$scope.data = {
"key": "Monthly",
"values": [{
"x": 0,
"y": 2
}, {
"x": 1,
"y": 6
}, {
"x": 2,
"y": 10
}]
}
谁能发现问题?