|
Percent yAxis formatting issue |
| Posted by icm63 on Sep-23-2025 03:55 |
|
using
rightAxis.setMultiFormat(Chart.RegularSpacingFilter(1, 0), "{={value|2}}%")
How do I get the percent to have the same number of digits? Lie
9.0%
8.5%
8.0%
and not
9%
8.5%
8%
An ideas?
|
Re: Percent yAxis formatting issue |
| Posted by Peter Kwan on Sep-23-2025 14:02 |
|
Hi icm63,
Please try:
rightAxis.setMultiFormat(Chart.RegularSpacingFilter(1, 0), "{value|2}%")
Regards
Peter Kwan |
Re: Percent yAxis formatting issue |
| Posted by Peter Kwan on Sep-23-2025 14:03 |
|
Hi icm63,
For one decimal place, please try:
rightAxis.setMultiFormat(Chart.RegularSpacingFilter(1, 0), "{value|1}%")
Regards
Peter Kwan |
Re: Percent yAxis formatting issue |
| Posted by icm63 on Sep-24-2025 02:28 |
|
I am using ...
rightAxis.setMultiFormat(Chart.RegularSpacingFilter(1, 0), "{value|@2}%") |
|