ace:图表设定轴的分数值

时间:2017-02-28 07:07:50

标签: jsf charts icefaces

我正在使用IceFaces,ace:chart在我的应用程序中显示图表。在我的y轴上,我有分数值(61.3,62.1等)。但是,当图形呈现时,值会四舍五入为整数(61,63等)

是否可以以分数显示值?

enter image description here

1 个答案:

答案 0 :(得分:0)

终于找到了答案!我们必须在设置y轴时放置setFormatString。

private Axis[] yAxes = new Axis[] {
            new Axis() {{               
                setLabel("Power level (dBuV)");
                setFormatString("%.1f");
            }}
    };

enter image description here