X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/0494b8d9b9bb03ab6c22b34dae81261e3cd7e3e6..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/examples/charts/Line.js diff --git a/examples/charts/Line.js b/examples/charts/Line.js new file mode 100644 index 00000000..0695b9f6 --- /dev/null +++ b/examples/charts/Line.js @@ -0,0 +1,103 @@ +Ext.require('Ext.chart.*'); +Ext.require(['Ext.Window', 'Ext.fx.target.Sprite', 'Ext.layout.container.Fit']); + +Ext.onReady(function () { + store1.loadData(generateData(8)); + + var win = Ext.create('Ext.Window', { + width: 800, + height: 600, + hidden: false, + maximizable: true, + title: 'Line Chart', + renderTo: Ext.getBody(), + layout: 'fit', + tbar: [{ + text: 'Reload Data', + handler: function() { + store1.loadData(generateData(8)); + } + }], + items: { + xtype: 'chart', + style: 'background:#fff', + animate: true, + store: store1, + shadow: true, + theme: 'Category1', + legend: { + position: 'right' + }, + axes: [{ + type: 'Numeric', + minimum: 0, + position: 'left', + fields: ['data1', 'data2', 'data3'], + title: 'Number of Hits', + minorTickSteps: 1, + grid: { + odd: { + opacity: 1, + fill: '#ddd', + stroke: '#bbb', + 'stroke-width': 0.5 + } + } + }, { + type: 'Category', + position: 'bottom', + fields: ['name'], + title: 'Month of the Year' + }], + series: [{ + type: 'line', + highlight: { + size: 7, + radius: 7 + }, + axis: 'left', + xField: 'name', + yField: 'data1', + markerConfig: { + type: 'cross', + size: 4, + radius: 4, + 'stroke-width': 0 + } + }, { + type: 'line', + highlight: { + size: 7, + radius: 7 + }, + axis: 'left', + smooth: true, + xField: 'name', + yField: 'data2', + markerConfig: { + type: 'circle', + size: 4, + radius: 4, + 'stroke-width': 0 + } + }, { + type: 'line', + highlight: { + size: 7, + radius: 7 + }, + axis: 'left', + smooth: true, + fill: true, + xField: 'name', + yField: 'data3', + markerConfig: { + type: 'circle', + size: 4, + radius: 4, + 'stroke-width': 0 + } + }] + } + }); +});