SMART datagrid v.1 > Classes > ChartColumn
If call after changing the contents of existing chart information object, it will be reflected immediately.
$('#changeChart').click(function () {
var col = grid.columnByName('colChart');
var chart = col.chart();
chart.type = 'bar';
col.refreshChart();
});