Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Intelligence (Analytics)
How to add suffix % in Axis Label with API java
francyann
Hi! I'd like add a suffix % to X Axis label? How can I do it with API JAVA? Is it FormatSpecifier? How can I used it? Thanks for you response.
Find more posts tagged with
Comments
francyann
Thanks to "Junior Member". I saw he has the same question in BIRTExchange and he has this response:
FractionNumberFormatSpecifier f = FractionNumberFormatSpecifierImpl.create();
f.setSuffix("%");
yAxisPrimary.setFormatSpecifier(f);
mwilliams
So, you have everything working now?