FUSIONSAFE

Converts a string to an encoded version that works well in Fusion graphs.

{LOCATION.NAME.FUSIONSAFE}



HC_SAFE_NUMBER

Handles numeric values that may be null in a way that works with HighCharts. This function should be used AFTER any rounding/number formatting/arithmetic you need to do on the number.


{AVG(LOCATION.PERCENT_SCORE).ROUND.HC_SAFE_NUMBER}



HC_SAFE_STRING

Escapes any quotes or other non-json-safe characters for safe use with HighCharts. This function should be used AFTER any trimming/splitting you need to do.


{LOCATION.NAME.HC_SAFE_STRING}


Example:
Did the employee say "Hello" when you arrived?
becomes
Did the employee say \"Hello\" when you arrived?



URLENCODE

Converts a string to its URL-encoded equivalent. Good for passing strings in links.


{LOCATION.NAME.URLENCODE}