@highcharts/dashboards
Version:
Highcharts Dashboards framework
21 lines (20 loc) • 581 B
TypeScript
import type { Arguments } from '../FormulaTypes';
import type DataTable from '../../DataTable';
/**
* Processor for the `PRODUCT(...values)` implementation. Calculates the product
* of the given values.
*
* @private
* @function Formula.processorFunctions.PRODUCT
*
* @param {Highcharts.FormulaArguments} args
* Arguments to process.
*
* @param {Highcharts.DataTable} [table]
* Table to use for references and ranges.
*
* @return {number}
* Result value of the process.
*/
declare function PRODUCT(args: Arguments, table?: DataTable): number;
export default PRODUCT;