Commit 790fbd6289684b78a152b09ffc17dd26fbff5594
1 parent
1dd8ddc5
Exists in
master
and in
112 other branches
local drawEngineImageExporter
Showing
1 changed file
with
3 additions
and
1 deletions
Show diff stats
js/app/views/VisuUI.js
@@ -258,6 +258,7 @@ Ext.define('amdaUI.VisuUI', { | @@ -258,6 +258,7 @@ Ext.define('amdaUI.VisuUI', { | ||
258 | mask: false, | 258 | mask: false, |
259 | shadow: false, | 259 | shadow: false, |
260 | theme:'Blue', | 260 | theme:'Blue', |
261 | + background: { fill : "#fff" }, | ||
261 | store: store, | 262 | store: store, |
262 | axes: [{ | 263 | axes: [{ |
263 | type: 'Numeric', | 264 | type: 'Numeric', |
@@ -553,7 +554,8 @@ Ext.define('amdaUI.VisuUI', { | @@ -553,7 +554,8 @@ Ext.define('amdaUI.VisuUI', { | ||
553 | var chartPanel = this.items.items[0].items.items[1]; | 554 | var chartPanel = this.items.items[0].items.items[1]; |
554 | var chart = chartPanel.down('chart'); | 555 | var chart = chartPanel.down('chart'); |
555 | chart.save({ | 556 | chart.save({ |
556 | - type: 'image/png' | 557 | + type: 'image/png', |
558 | + defaultUrl : window.location //'http://apus.irap.omp.eu/NEWAMDA/' | ||
557 | }); | 559 | }); |
558 | } | 560 | } |
559 | 561 |