SMART datagrid v.1 > Classes > ChartColumn

Back  Forward

DataLudi.ChartColumn.refreshChart  method

If call after changing the contents of existing chart information object, it will be reflected immediately. 

function refreshChart ();
Returns
Void
Code -1
    $('#changeChart').click(function () {
        var col = grid.columnByName('colChart');
        var chart = col.chart();
        
        chart.type = 'bar';
        col.refreshChart();
    });
See Also
chart
Examples
Hello Chart