How To: Edit Chart Functions for custom calculations

Overview

Information

  • Editing chart functions is an advanced freature which requires the knowledge of JavaScript. eGauge support cannot assist in writing or debugging JavaScript code.
 

Chart functions allow for the use of JavaScript to calculate new values based on the data recorded in the registers in the meter configuration. 

Prerequisites

  • Knowledge of JavaScript Required.

 

Instructions

Step 1: Access the ‘Chart Function Editor’ by using the hamburger in the upper left, choose ‘Chart’ > ‘Edit Functions

 

Step 2: Click on an existing chart function to edit it or click on the ‘Add Function’ icon to add a new one. Click the X to delete an existing chart function.

 

 

Step 3: Either clicking on the ‘Add Function’ or editing an existing function will bring up the ‘Edit Function’ Window. Below is an example function.

In the example script shown above there are two arguments defined. use which is being passed the instantaneous value of the eGauge Usage Virtual register (defined as $"Usage") and bat which is being passed the instantaneous value of the "Battery" Virtual register (defined as $"Battery").  Both "Usage" and "Battery" are register values defined in the eGauge Installation settings (link) of the meter.

 

Function name - (mandatory field) An arbitrary, unique name selected by the user.  This is only used within the eGauge chart and does not need to be a valid JavaScript function name. In the example script shown above, the Function name is use+charge

Returns an accrued value - Enable this option to return an accrued (cumulative) value. Leave this option disabled to return an instantaneous value.

Unit of return value - (mandatory field) Selects the unit the value returned by the function displays as.  In the example script above, this is set to Watts. This value should be changed depending on the unit of the calculation being performed by the function.

Arguments - This table defines the list of values to be passed to the function. Only register values can be passed as arguments. Argument names must be valid JavaScript identifiers.

Body - This section defines the calculations to be performed by the function.

Information

  • If a function argument refers to a register that no longer exists in the meter configuration settings, its value will be Undefined. This is the reason for using "||0" in the code above: it ensures that if either the usage or battery virtual registers are undefined, a value of 0 is used instead.
 

The ‘Body’ may be an arbitrary JavaScript function body and does allow for nested functions. 

function reg_or_zero(reg) {

  return reg || 0;

}

return reg_or_zero(use);

 

Documentation -This field is to add a description of what the function does.

Step 4: Click ‘Ok’ to save your chart function.

Step 5: Saved chart functions will appear in the list of values to graph after register values. To add a saved chart function to a chart, add a new chart item and choose the chart function from the list of items displayed in the Value to Graph dropdown list.  The chart function will behave as any other chart item.