GetNextChartId
Description
Syntax
public GetNextChartId(chartId: number): numberParameters
Return Value
Example
let chartId = this.api.GetFirstChartId()
while (chartId !== -1) {
console.log(`Processing chart ID: ${chartId}`)
chartId = this.api.GetNextChartId(chartId)
}Last updated