We have an application that uses FusionChart when Smartclient 6.x version had it.
Recently upgraded smartclient version to 8.2power, would like to move from FusionChart to Smartclient's Facet Chart.
Version: 8.2 Power Edition
Browser: IE
Sample Code:
isc.ListGrid.create({
ID: "xxList",
width: "100%",
height: "100%",
dataPageSize: 10,
bodyBackgroundColor: setListBackgroundColor(),
updateChart : function (props) {
// store chart configuration
if (props) this.chartProps = props;
// if there's already a chart, destroy it
if (this.lastChart) this.lastChart.destroy();
// generate chart
this.lastChart = this.chartData(null, null, null, this.chartProps);
XXXWindow.removeItem(xxxList);
XXXWindow.addItem(this.lastChart);
}
})
Is there any easy way to migrate to the newer charts?
Recently upgraded smartclient version to 8.2power, would like to move from FusionChart to Smartclient's Facet Chart.
Version: 8.2 Power Edition
Browser: IE
Sample Code:
isc.ListGrid.create({
ID: "xxList",
width: "100%",
height: "100%",
dataPageSize: 10,
bodyBackgroundColor: setListBackgroundColor(),
updateChart : function (props) {
// store chart configuration
if (props) this.chartProps = props;
// if there's already a chart, destroy it
if (this.lastChart) this.lastChart.destroy();
// generate chart
this.lastChart = this.chartData(null, null, null, this.chartProps);
XXXWindow.removeItem(xxxList);
XXXWindow.addItem(this.lastChart);
}
})
Is there any easy way to migrate to the newer charts?
Comment