rcharts nvd3 % 格式 - 精确到百分之一

rcharts nvd3 % format - precision to one tenth percent

我正在使用 Rcharts nvd3 中的折线图,我想将 y 值的格式设置为精确到 % 的十分之一的百分比。我可以如下设置百分比格式,但是当我将鼠标悬停在点上时,它只显示 % 精确到 1%,我无法将它精确到小数点后十位。

p$yAxis(tickFormat = "#!
        function(d) {return d3.format('%')(d)}
        !#"
)

我试过这样做,但没有成功:

p$yAxis(tickFormat = "#!
            function(d) {return d3.format('.0%')(d)}
            !#"
    )

尝试:

p$yAxis(tickFormat = "#!
        function(d) {return d3.format('.1%')(d)}
        !#"
)

来自d3 wiki

The precision indicates how many digits should be displayed after the decimal point for a value formatted with types "f" and "%"