Commit 56ad05d079fb42246e2f8b90a5a1e24c9cd9b552

Authored by elena
1 parent ae7dc148

lightware chart

Showing 1 changed file with 17 additions and 18 deletions   Show diff stats
js/app/views/VisuUI.js
... ... @@ -134,13 +134,10 @@ Ext.define('amdaUI.VisuUI', {
134 134 }
135 135 }
136 136 });
137   -
138   - me.chartStore.load();
139   -
  137 +
  138 + me.chartStore.load();
140 139 }
141   -
142   -
143   -
  140 +
144 141 AmdaAction.initForChart(this.object.get('id'), this.object.get('objName'), this.fromPlugin, 'catalog', onAfterInit);
145 142  
146 143  
... ... @@ -197,8 +194,9 @@ Ext.define('amdaUI.VisuUI', {
197 194 this.chartConfig = {
198 195 width: 500,
199 196 height: 500,
200   - animate: true,
201   - mask: true,
  197 + animate: false,
  198 + mask: false,
  199 + shadow: false,
202 200 // theme:'Category2',
203 201 store: store,
204 202 axes: [{
... ... @@ -216,10 +214,11 @@ Ext.define('amdaUI.VisuUI', {
216 214 }],
217 215 series: [{
218 216 type: 'scatter',
219   - markerConfig: {
220   - radius: 5,
221   - size: 5
222   - },
  217 + showMarkers: false,
  218 +// markerConfig: {
  219 +// radius: 5,
  220 +// size: 5
  221 +// },
223 222 // // axes: ['left', 'bottom'],
224 223 xField: '',
225 224 yField: '',
... ... @@ -231,12 +230,12 @@ Ext.define('amdaUI.VisuUI', {
231 230 }
232 231 }],
233 232 listeners: {
234   - select: {
235   - fn: function(me, selection) {
236   - me.setZoom(selection);
237   - me.mask.hide();
238   - }
239   - }
  233 +// select: {
  234 +// fn: function(me, selection) {
  235 +// me.setZoom(selection);
  236 +// me.mask.hide();
  237 +// }
  238 +// }
240 239 }
241 240 }
242 241  
... ...