X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..25ef3491bd9ae007ff1fc2b0d7943e6eaaccf775:/docs/source/reload-chart.html diff --git a/docs/source/reload-chart.html b/docs/source/reload-chart.html deleted file mode 100644 index 4a37ada2..00000000 --- a/docs/source/reload-chart.html +++ /dev/null @@ -1,53 +0,0 @@ - - - The source code - - - - -
function generateData(){
-    var data = [];
-    for(var i = 0; i < 12; ++i){
-        data.push([Date.monthNames[i], (Math.floor(Math.random() *  11) + 1) * 100]);
-    }
-    return data;
-}
-
-Ext.onReady(function(){
-    var store = new Ext.data.ArrayStore({
-        fields: ['month', 'hits'],
-        data: generateData()
-    });
-    
-    new Ext.Panel({
-        width: 700,
-        height: 400,
-        renderTo: document.body,
-        title: 'Column Chart with Reload - Hits per Month',
-        tbar: [{
-            text: 'Load new data set',
-            handler: function(){
-                store.loadData(generateData());
-            }
-        }],
-        items: {
-            xtype: 'columnchart',
-            store: store,
-            yField: 'hits',
-            xField: 'month',
-            xAxis: new Ext.chart.CategoryAxis({
-                title: 'Month'
-            }),
-            yAxis: new Ext.chart.NumericAxis({
-                title: 'Hits'
-            }),
-            extraStyle: {
-               xAxis: {
-                    labelRotation: -90
-                }
-            }
-        }
-    });
-});
- - \ No newline at end of file