Sabtu, 01 Februari 2014

ExtJS Save Chart

Save Chart/convert to image

tbar: [

    {
        text: 'Save Chart',
        handler: function () {
            Ext.MessageBox.confirm('Confirm Download', 'Would you like to download the chart as an image?',
                function (choice) {
                    if (choice == 'yes') {
                        chart.save({
                            type: 'image/png'
                        });
                    }
                });
        }
    },


Tidak ada komentar:

Posting Komentar