ace:chart 设置轴的分数值
ace:chart set fraction values for axes
我正在使用 IceFaces,ace:chart 在我的 application.On 我的 y 轴中显示图表,我有分数形式的值(61.3、62.1 等)。但是,当渲染图时,值会四舍五入为整数(61,63 等)
是否可以显示分数形式的值?
终于找到答案了!!!我们必须在设置 y 轴时设置 setFormatString。
private Axis[] yAxes = new Axis[] {
new Axis() {{
setLabel("Power level (dBuV)");
setFormatString("%.1f");
}}
};
我正在使用 IceFaces,ace:chart 在我的 application.On 我的 y 轴中显示图表,我有分数形式的值(61.3、62.1 等)。但是,当渲染图时,值会四舍五入为整数(61,63 等)
是否可以显示分数形式的值?
终于找到答案了!!!我们必须在设置 y 轴时设置 setFormatString。
private Axis[] yAxes = new Axis[] {
new Axis() {{
setLabel("Power level (dBuV)");
setFormatString("%.1f");
}}
};