SMART datagrid v.1 > Classes > ChartColumn
JSON object in which contains chart setting information to be displayed in column cell.
If change partial property of the existing setting object rather than setting information object itself, it will not be reflected immediately. If want to reflect immediately, you can call refreshChart.
$('#changeChart').click(function () {
var col = grid.columnByName('colChart');
col.setChart({
type: 'column',
...
});
});
$('#changeChart').click(function () {
var col = grid.columnByName('colChart');
var chart = col.chart();
chart.type = 'bar';
col.refreshChart();
});