Skip to content

getChartDatasource

The getChartDatasource method retrieves the KendoUI datasource object.

Syntax

getChartDatasource (cellAddress)

Arguments

cellAddress : string (required)

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

Return

The result of this function is a KendoUI datasource object.

Examples

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