如何使用 ng2-nvD3 折线图字符串值作为X轴标签
我的数据数组是
data: [
values: [{x:'Ram',y:25.25},{x:'Krish',y:250.25},{x:'Phani',y:125.25}],
key: 'Result',
color: '#ff7f0e'
]
我的图表选项如下
options : {
chart: {
type: 'lineChart'
x: function(d){return d.x;},
y: function(d){return d.y;},
xAxis: {
axisLabel: 'Name'
},
yAxis: {
axisLabel: 'Percentage',
tickFormat: function(d){
return d3.format('.02f')(d);
},
axisLabelDistance: -10
}
}
}
我关注了this link