cancel
Showing results for 
Search instead for 
Did you mean: 
intapiuser
Community Team Member
Community Team Member
Introduction
Use this script for granular formatting of an Indicator Widget. 
 
Instructions:
Create your indicator widget and add it to the dashboard. Select the edit button and choose the Edit Script from the options menu on the top right. 
 
Add the following script and adjust the options object based on your needs.
widget.on('processresult', function(w, e) {

 var options = {
 title: {
 fontFamily: 'Helvetica, sans-serif',
 fontWeight: 'bold',
 fontSizes: {
 big: 40,
 medium: 30
 },
 color: 'green'

 },
 secondaryTitle: {
 fontFamily: 'Helvetica, sans-serif',
 fontWeight: 'bold',
 fontSizes: {
 big: 20,
 medium: 10
 },
 color: 'blue'

 },
 secondaryValue: {
 fontFamily: 'Helvetica, sans-serif',
 fontStyle: 'italic',
 color: 'yellow'
 },
 
 backgroundColor: 'gray'
 };

 w.indicatorInstance.setOptions('numericSimple', options);

});
Rate this article:
Comments
danblack
9 - Travel Pro
9 - Travel Pro

This doesn't seem to have an affect on my widget.  Should this work for gauge indicators?

Version history
Last update:
‎03-02-2023 09:18 AM
Updated by:
Contributors