Percentage

This is the official documentation of the @forestadmin/agent Node.js agent.

Percentage Charts are very similar to value charts. The range of valid values to be returned is from 0 to 100.

agent.addChart('averageVolumeIncrease', async (context, resultBuilder) => {
  // [...]

  return resultBuilder.percentage(11);
});

Last updated