Hi, I'm trying to evaluate your charting functionality in advance of a potential feature sponsorship.
I used the sample code in your Feature Explorer to generate a chart like this from a List Grid:
The Grid currently has 3 columns: Ticker, 52 week high, 52 week low
When chartData() executes above, I get the following error:
18:25:17.848:TMR1:WARN:DrawPath:isc_DrawPath_5:Error: NOT_SUPPORTED_ERR: DOM Exception 9 [No error.stack available]
That is from Chrome and Firefox gives something very similar like this:
DrawPath:isc_DrawPath_103:[Exception... "Operation is not supported" code: "9" nsresult: "0x80530009 (NS_ERROR_DOM_NOT_SUPPORTED_ERR)"
IE seems to fail silently.
I'm using the latest versions of all browsers.
Any suggestions on how to figure out what is happening?
I used the sample code in your Feature Explorer to generate a chart like this from a List Grid:
Code:
chartType:"Area", updateChart : function (chartType) { // store chart configuration if (chartType) this.chartType = chartType; // or pick up the (possibly changed) chartType from the last chart else if (this.lastChart) this.chartType = this.lastChart.chartType; // if there's already a chart, destroy it if (this.lastChart) this.lastChart.destroy(); // generate chart this.lastChart = this.chartData("ticker"); //isc.Log.logInfo("this.lastChart=" + this.lastChart); // show it fundAssetChartsContainer.addMember(this.lastChart, 0); },
When chartData() executes above, I get the following error:
18:25:17.848:TMR1:WARN:DrawPath:isc_DrawPath_5:Error: NOT_SUPPORTED_ERR: DOM Exception 9 [No error.stack available]
That is from Chrome and Firefox gives something very similar like this:
DrawPath:isc_DrawPath_103:[Exception... "Operation is not supported" code: "9" nsresult: "0x80530009 (NS_ERROR_DOM_NOT_SUPPORTED_ERR)"
IE seems to fail silently.
I'm using the latest versions of all browsers.
Any suggestions on how to figure out what is happening?
Comment