查看 piaChart 十进制值
View piaChart decimal values
我想通过 piaChart 显示以下值
3.0283506
0.25773194
95.87629
0.83762884
我如何配置 dataLabelFormatString 以便它也显示小于 1 的值,因此结果将如下所示:
3.02
0.25
95.8
0.83
谢谢
如果我没理解错的话,您想显示值的前 4 个字符吗?
在这种情况下,您想在 dataLabelFormatString 中使用 %4.4s。
double num1 = 3.0283506;
double num2 = 0.25773194;
double num3 = 95.87629;
double num4 = 0.83762884;
System.out.format("%4.4s%n", num1);
System.out.format("%4.4s%n", num2);
System.out.format("%4.4s%n", num3);
System.out.format("%4.4s%n", num4);
产生:
3.02
0.25
95.8
0.83
可以通过设置放置十进制格式的数据标签。
渲染器选项:{
填充:真实,
showDataLabels: true,
dataLabelFormatString: '%.2f%'
}
我想通过 piaChart 显示以下值
3.0283506
0.25773194
95.87629
0.83762884
我如何配置 dataLabelFormatString 以便它也显示小于 1 的值,因此结果将如下所示:
3.02
0.25
95.8
0.83
谢谢
如果我没理解错的话,您想显示值的前 4 个字符吗?
在这种情况下,您想在 dataLabelFormatString 中使用 %4.4s。
double num1 = 3.0283506;
double num2 = 0.25773194;
double num3 = 95.87629;
double num4 = 0.83762884;
System.out.format("%4.4s%n", num1);
System.out.format("%4.4s%n", num2);
System.out.format("%4.4s%n", num3);
System.out.format("%4.4s%n", num4);
产生:
3.02
0.25
95.8
0.83
可以通过设置放置十进制格式的数据标签。
渲染器选项:{
填充:真实,
showDataLabels: true,
dataLabelFormatString: '%.2f%'
}