从辅助x轴的负值中删除减号

时间:2015-11-17 05:25:56

标签: d3.js charts nvd3.js

屏幕截图显示了值以及沿辅助x轴的减号。我想摆脱它。如果我错了,请纠正我。

Multibar-Horizontal Chart

以下是代码:

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);

                }
            }
        }

    };

1 个答案:

答案 0 :(得分:2)

您需要调整tickFormat的{​​{1}}:

yAxis

这会将绝对刻度值传递给格式化程序,使所有值都没有减号。