Skip to content

getChart

The getChart method retrieves the chart object from a given cell.

Syntax

getChart (cellAddress)

Arguments

cellAddress : string (required)

The address of the chart object in either R1C1 format or A1 format.

Return

The result of this function is a KendoUI DataViz chart object:

Examples

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