Skip to content

getReportChart

The getReportChart retrieves a CALUMO chart object which can then be manipulated.

Syntax

getReportChart (cellAddress)

Arguments

cellAddress : string (required)

The address of the CALUMO report chart, in either R1C1 format or A1 format.

Return

The result of this function is a CALUMO report chart object.

Examples

//
// Example 1 - Get the chart object and print it out to the console for debugging purposes
//
console.log (report.api.getReportChart("A1"));
Back to top