UNPKG

extjs-gpl

Version:

GPL licensed version of Sencha Ext JS

90 lines (86 loc) 2.33 kB
/** * A 3D column chart with negative values. * Tapping or hovering a column will highlight it. */ Ext.define('KitchenSink.view.charts.bar3d.Negative', { extend: 'Ext.Panel', xtype: 'bar-negative-3d', requires: ['Ext.chart.theme.Muted'], controller: 'bar-negative-3d', // <example> // Content between example tags is omitted from code preview. otherContent: [{ type: 'Controller', path: 'classic/samples/view/charts/bar3d/NegativeController.js' }, { type: 'Store', path: 'classic/samples/store/Earnings.js' }], bodyStyle: 'background: transparent !important', layout: 'fit', // </example> width: 650, height: 600, tbar: [ '->', { text: Ext.os.is.Desktop ? 'Download' : 'Preview', handler: 'onDownload' } ], items: { xtype: 'cartesian', flipXY: true, reference: 'chart', theme: 'muted', store: { type: 'earnings' }, insetPadding: '40 40 40 20', innerPadding: '8 0 0 0', interactions: ['itemhighlight'], animation: false, axes: [{ type: 'numeric3d', position: 'bottom', fields: 'gaming', grid: { odd: { fillStyle: 'rgba(255, 255, 255, 0.06)' }, even: { fillStyle: 'rgba(0, 0, 0, 0.05)' } } }, { type: 'category3d', position: 'left', fields: 'quarter', grid: true }], series: [{ type: 'bar3d', xField: 'quarter', yField: 'gaming', highlightCfg: { saturationFactor: 0 }, label: { fillStyle: 'white', fontWeight: 'bold', field: 'gaming', display: 'insideEnd' }, renderer: 'onSeriesRender' }], sprites: [{ type: 'text', text: 'Profits and Losses', fontSize: 22, width: 100, height: 30, x: 40, // the sprite x position y: 20 // the sprite y position }] } });