Focal Point Banner


As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.

Join the TIBCO Community
TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.

  • From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
  • Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
  • Request access to the private WebFOCUS User Group (login required) to network with fellow members.

Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED] Tooltip Abbreviation Currency

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED] Tooltip Abbreviation Currency
 Login/Join
 
Gold member
posted
I’m trying to format a tooltip into an abbreviated value, with a dollar sign, one decimal point and the abbreviation character.

For example:
1,778,000,000 should display as “Series For Label: $1.78B”
534,387,000 should display as “Series For Label: $534.4M”

Using some code I found on here by a couple geniuses, I was able to get this to work for billions, but my question is how can I make my code dynamic and work for Millions, or even in the rare event Thousands (K)?

Here is a snipit of the code I currently have that works for Billions:

  
*GRAPH_JS
series: [
{ "series": 'reset',
               tooltip: function(d,s,g){
                   var valueArr = this.data[0],total=0;
                                  for (var i=0 ;i<valueArr.length;i++){total+=valueArr[i].value;}
                           var sum= d / 1000000000  ;
               return this.getSeries(s).label + " For " + this.getGroupLabel(g) + ": " + "$" + sum.toFixed(1) + "B";
               }
  },
]
*END


This message has been edited. Last edited by: Joel Elscott,


WebFOCUS 8.2.03
z/OS
 
Posts: 66 | Registered: May 20, 2013Report This Post
Gold member
posted Hide Post
I solved my own issue. Below is the final code I used if anyone is interested. It's probably not the best way, but it works.

  
{ "series": 'reset',
	tooltip: function(d,s,g){
	    var valueArr = this.data[0],total=0;
		    for (var i=0 ;i<valueArr.length;i++){total+=valueArr[i].value;}
            if (d > 1000000000)
			{
				var sum= d / 1000000000  ;
				return this.getSeries(s).label + " For " + this.getGroupLabel(g) + ": " + "$" + sum.toFixed(1) + "B";
			}
			else if (d > 1000000)
			{
				var sum= d / 1000000  ;
				return this.getSeries(s).label + " For " + this.getGroupLabel(g) + ": " + "$" + sum.toFixed(1) + "M";
			}
			else if (d > 1000)
			{
				var sum= d / 1000  ;
				return this.getSeries(s).label + " For " + this.getGroupLabel(g) + ": " + "$" + sum.toFixed(1) + "K";
			}
 	}
},


WebFOCUS 8.2.03
z/OS
 
Posts: 66 | Registered: May 20, 2013Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED] Tooltip Abbreviation Currency

Copyright © 1996-2020 Information Builders