屏幕截图显示了值以及沿辅助x轴的减号。我想摆脱它。如果我错了,请纠正我。
以下是代码:
var app = angular.module('myApp', ['nvd3']);
app.controller('myCtrl', function($scope) {
$scope.options = {
chart: {
type: 'multiBarHorizontalChart',
height: 500,
x: function(d){return d.label;},
y: function(d){return d.value;},
//yErr: function(d){ return [-Math.abs(d.value * Math.random() * 0.3), Math.abs(d.value * Math.random() * 0.3)] },
showControls: true,
showValues: true,
duration: 500,
stacked: true,
xAxis: {
showMaxMin: false
},
yAxis: {
axisLabel: 'Values',
tickFormat: function(d){
return d3.format(',f')(d);
}
}
}
};
答案 0 :(得分:2)
您需要调整tickFormat
的{{1}}:
yAxis
这会将绝对刻度值传递给格式化程序,使所有值都没有减号。