I'm trying to get a chart using ListGrid. Below is the code im using to this. I get the error above.
Can somebody check if I'm doing something wrong.
I see the following in the Developer Console:
Code:
boundList.addDataArrivedHandler(new DataArrivedHandler() { public void onDataArrived(DataArrivedEvent dataArrivedEvent) { SC.say("hey"); FacetChart fC = new FacetChart(); fC.setChartType(ChartType.PIE); FacetChart fk = boundList.chartData("EmployeeId",null,null,fC,true); vStack.addMember(fk); } });
I see the following in the Developer Console:
Code:
15:31:52.590:XRP3:WARN:ListGrid:isc_ListGrid_1:Unable to create autoChild 'chart' of type 'FacetChart' - no such class in runtime.
Comment