function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Bryn JonesBryn Jones 

Show numbers on google guage in $'s...

I have created a dashboard for our company using google gauges. The problem i am having is that the numbers show as just numbers and not in currecny format so it looks unproffessional. Is there a code i can use to format the numbers on the gauges?
.
Thanks
Sonam_SFDCSonam_SFDC
Bryn,

Did you get a chance to check the following property which can help you get the $ sign with the amount:

// use this function to format the label
  formatCurrencyLabel = function( value )
    {
      return "$" + String(value);
    }

reference: http://www.verticalcoder.com/2011/07/28/displaying-salesforce-data-with-google-charts-and-ajax-toolkit/

Please try and let me know..