This content has been marked as final.
Show 3 replies
-
1. Re: Full numbers label value in Oracle APEX charts
Oleh Tyshchenko Feb 10, 2019 12:35 PM (in response to 715eab15-9f13-4dca-9e4b-3547ddb499cf)Use this Advanced Javascript Code
function( options ){ $.extend( options.valueFormats, { label : { scaling : "none" } } ); return options; }
-
2. Re: Full numbers label value in Oracle APEX charts
Hilary Farrell-Oracle Feb 11, 2019 10:26 AM (in response to 715eab15-9f13-4dca-9e4b-3547ddb499cf)Hi,
There is no need to use any custom JavaScript to achieve what you're looking for. Just update the y-axis settings for 'Value' on your chart, setting the 'Format Type' to 'Decimal', and ensuring you set the associated 'Decimal Places' attribute to suit your requirements. Once 'Format Type' has been set, we automatically default the 'Format Scale' to none - something that JET requires ( see the ojChart API ):
Regards,
Hilary
-
3. Re: Full numbers label value in Oracle APEX charts
Oleh Tyshchenko Feb 11, 2019 11:31 AM (in response to Hilary Farrell-Oracle)Thank you Hilary, don't know about this.