Blame view

js/app/models/PlotObjects/PlotObjectConfig.js 10.4 KB
437c4dbc   Benjamin Renard   First implementat...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**
 * Project      : AMDA-NG
 * Name         : PlotObjectConfig.js
 * @class   amdaPlotObj.PlotObjectConfig
 * @extends Ext.data.Model
 * @brief   Plot Request object configuration 
 * @author  Benjamin Renard
 * @version $Id: PlotObjectConfig.js benjamin $
 ******************************************************************************
 *    FT Id     :   Date   : Name - Description
 ******************************************************************************
 *	:           :21/07/2015: BRE  - file creation
 */
 
 		
Ext.define('amdaPlotObj.PlotObjectConfig', {
	singleton: true,
	
	defaultValues : {
		file : {
			format : 'PNG',
			output : 'INTERACTIVE',
			oneFilePerInterval: false
		},
27b2a53e   Benjamin Renard   Link tab plot to ...
25
26
27
		tree : {
			simplifiedView : false
		},
437c4dbc   Benjamin Renard   First implementat...
28
29
30
31
32
33
34
35
36
37
38
39
40
41
		page : {
			xMargin : 15.,
			yMargin : 20.,
			mode : 'color',
			orientation: 'landscape',
			dimension : 'ISO A4',
			title : {
				position: 'top',
				alignment: ' center',
				color: '#000000'
			},
			font : {
				name : 'sans-serif',
				size: '12'
003ba315   Benjamin Renard   Add Epoch Plot an...
42
43
44
45
46
47
			},
			layout : {
				type : 'vertical',
				panelHeight  : 0.5,
				panelSpacing : 0.05,
				expand : false
437c4dbc   Benjamin Renard   First implementat...
48
			}
abe09878   Benjamin Renard   Add panels and ax...
49
50
51
52
53
54
55
56
57
58
59
60
		},
		panel : {
			plotType : 'timePlot',
			title : {
				position: 'bottom',
				alignment: ' center',
				color: '#000000'
			},
			font : {
				name : 'sans-serif',
				size: '12'
			},
a0bf9157   Benjamin Renard   Add tick plot and...
61
62
63
64
65
			backgroundColor : 'none',
			status : {
				position : 'top',
				colorMap : 0
			}
abe09878   Benjamin Renard   Add panels and ax...
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
		},
		axis : {
			scale : 'linear',
			tickPosition : 'outwards',
			color : '#000000',
			thickness : '1',
			legend : {
				color: '#000000',
				font : {
					name : 'sans-serif',
					size: '12'
				}
			},
			timeFormat : 'dd/mm/yy',
			colorMap : '1'
17433635   Benjamin Renard   Add series and sp...
81
82
83
84
85
86
87
88
89
90
		},
		serie : {
			yAxis : 'y-left',
			lines : {
				style : 'plain',
				width : 1,
				color : 'auto'
			},
			symbols : {
				type : 'dot',
003ba315   Benjamin Renard   Add Epoch Plot an...
91
				size : 3,
17433635   Benjamin Renard   Add series and sp...
92
				color : 'auto'
003ba315   Benjamin Renard   Add Epoch Plot an...
93
			},
24b02d83   Benjamin Renard   Add definition of...
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
			resamplingMode : 'xparam',
			timetick : {
				type: 'auto',
				step: 3600,
				nbmajor : 5,
				nbminor : 5,
				color : '#FF0000',
				symbols : {
					type: 'full-circle',
					size: 10,
					color: '#FF0000'
				},
				firstsymbols : {
					type: 'triangle',
					size: 4,
					color: '#00FF00'
				},
				font : {
					name : 'sans-serif',
					size: '12'
				}
			}
17433635   Benjamin Renard   Add series and sp...
116
117
118
		},
		spectro : {
			yAxis : 'y-left'
94abdb37   Benjamin Renard   Add params legend...
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
		},
		legends : {
			series : {
				type : 'text-only',
				position : 'outside',
				text: {
					color : '#000000'
				},
				border: {
					color : '#000000'
				},
				intervalinfo : {
					type : 'start-stop'
				},
				font : {
					name : 'sans-serif',
					size: '12'
				}
339866c4   Benjamin Renard   Add text legend d...
137
138
139
140
141
142
143
144
			},
			text : {
				position : 'left',
				color : '#000000',
				font : {
					name : 'sans-serif',
					size: '12'
				}
94abdb37   Benjamin Renard   Add params legend...
145
			}
829160b3   Benjamin Renard   Add constants def...
146
147
148
149
150
151
152
153
		},
		constants : {
			axisId : 'y-left',
			line : {
				style : 'plain',
				width : 1,
				color : '#000000'
			}
a8c54fb9   Benjamin Renard   Add text object p...
154
155
156
157
158
159
160
161
162
163
164
		},
		textObjs : {
			yAxisId   : 'y-left',
			xRelative : true,
			yRelative : true,
			align : 'left',
			color : '#000000',
			font : {
				name : 'sans-serif',
				size: '12'
			}
dbb7bcbe   Benjamin Renard   Add curves defint...
165
166
167
168
169
170
171
		},
		curves : {
			line : {
				style : 'plain',
				width : 1,
				color : '#000000'
			}
486cc3c7   Benjamin Renard   Add fill elements...
172
173
174
175
176
		},
		fills : {
			type : 'serie-constant',
			greaterColor : 'none',
			lessColor : 'none'
437c4dbc   Benjamin Renard   First implementat...
177
178
179
		}
	},
	
dbb7bcbe   Benjamin Renard   Add curves defint...
180
181
182
183
184
185
186
187
188
189
190
191
192
	getValueByKey : function(dataList, key)
	{
		var value = '';
		Ext.each(dataList, function (data) {
			if (data.key == key)
			{
				value = data.value;
				return;
			}
		});
		return value;
	},
	
437c4dbc   Benjamin Renard   First implementat...
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
	availableFileFormats : [
	               {'key' : 'PNG', 'value' : 'PNG'},
	               {'key' : 'PDF', 'value' : 'PDF'},
	               {'key' : 'PS', 'value' : 'PS'},
	               {'key' : 'SVG', 'value' : 'SVG'}
	],
	
	availableFileOutputsForPng : [
	               {'key' : 'INTERACTIVE', 'value' : 'Interactive mode'},
	               {'key' : 'TGZ', 'value' : 'tar+gzip archive'},
	               {'key' : 'ZIP', 'value' : 'zip archive'}
	],
	
	availableFileOutputsForOtherFormats : [
	           	   {'key' : 'TGZ', 'value' : 'tar+gzip archive'},
	           	   {'key' : 'ZIP', 'value' : 'zip archive'}
	],
	
	availablePageModes : [
	               {'key' : 'color', 'value' : 'Color'},
	               {'key' : 'grayscale', 'value' : 'Grayscale'}
	],
	
	availablePageOrientations : [
	         	   {'key' : 'landscape', 'value' : 'Lanscape'},
	        	   {'key' : 'portrait', 'value' : 'Portrait'}
	],
	
	availablePageDimensions : [
	       	       {'key' : 'ISO A4', 'value' : 'ISO A4'},
	    	       {'key' : 'US letter', 'value' : 'US letter'}      
	],
	
abe09878   Benjamin Renard   Add panels and ax...
226
227
228
229
230
231
232
233
234
	availablePlotTypes : [
   	               {'key' : 'timePlot', value : 'Time Plot'},
   	               {'key' : 'xyPlot', value : 'Scatter Plot'},
	               {'key' : 'epochPlot', value : 'Epoch Plot'},
	               {'key' : 'instantPlot', value : 'Instant Plot'},
	               {'key' : 'statusPlot', value : 'Status Plot'},
	               {'key' : 'tickPlot', value : 'Tick Plot'}
	],
	
437c4dbc   Benjamin Renard   First implementat...
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
	availableFontNames : [
	        	   {'key' : 'sans-serif', 'value' : 'sans-serif'},
	        	   {'key' : 'serif', 'value' : 'serif'},
	        	   {'key' : 'monospace', 'value' : 'monospace'},
	        	   {'key' : 'script', 'value' : 'script'}
	],
	
	availableTitlePositions : [
	     	       {'key' : 'top', 'value' : 'Top'},
	     	       {'key' : 'bottom', 'value' : 'Bottom'}
	],
	
	availableTitleAlignments : [
	               {'key' : 'center', 'value' : 'Center'},
	               {'key' : 'left', 'value' : 'Left'},
	               {'key' : 'right', 'value' : 'Right'}
	],
	
abe09878   Benjamin Renard   Add panels and ax...
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
	availableAxisScales : [
	               {'key' : 'linear', 'value' : 'Linear'},
	               {'key' : 'logarithmic', 'value' : 'Logarithmic'}
    ],
    
    availableTicksPositions : [
                   {'key' : 'inwards', 'value' : 'Inwards'},
                   {'key' : 'outwards', 'value' : 'Outwards'}
    ],
    
    availableTimeAxisFormats : [
                   {'key' : 'dd/mm/yy', 'value' : 'dd/mm/yy'},
                   {'key' : 'ddd/yy', 'value' : 'ddd/yy'},
                   {'key' : 'DD/MM/YYYY', 'value' : 'DD/MM/YYYY'}
    ],
    
17433635   Benjamin Renard   Add series and sp...
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
    availableYAxes : [
                   {'key' : 'y-left', 'value' : 'Left'},
                   {'key' : 'y-right', 'value' : 'Right'}
	], 
    
    availableLinesStyles : [
                   {'key' : 'plain', 'value' : 'Plain'},
                   {'key' : 'dot', 'value' : 'Dot'},
                   {'key' : 'long-spaced-dot', 'value' : 'Long spaced dot'},
                   {'key' : 'long-short-dot', 'value' : 'Long short dot'}
	],
	
	availableSymbolsTypes : [
	               {'key' : 'dot', 'value' : 'Dot'},
	               {'key' : 'plus', 'value' : 'Plus'},
	               {'key' : 'wildcard', 'value' : 'Wildcard'},
	               {'key' : 'circle', 'value' : 'Circle'},
	               {'key' : 'crux', 'value' : 'Crux'},
	               {'key' : 'square', 'value' : 'Square'},
	               {'key' : 'triangle', 'value' : 'Triangle'},
	               {'key' : 'crux-in-circle', 'value' : 'Crux in circle'},
	               {'key' : 'dot-in-circle', 'value' : 'Dot in circle'},
	               {'key' : 'diamond', 'value' : 'Diamond'},
	               {'key' : 'star', 'value' : 'Star'},
	               {'key' : 'david-star', 'value' : 'David star'},
	               {'key' : 'full-square', 'value' : 'Full square'},
	               {'key' : 'full-circle', 'value' : 'Full circle'},
	               {'key' : 'full-star', 'value' : 'Full star'}
    ],
    
abe09878   Benjamin Renard   Add panels and ax...
299
300
301
302
303
304
305
    availableColorMaps : [
                   {'key' : '0', 'value' : 'Default'},
                   {'key' : '1', 'value' : 'Blue Red'},
                   {'key' : '2', 'value' : 'Blue Yellow'},
                   {'key' : '3', 'value' : 'Grayscale'}
	],
	
437c4dbc   Benjamin Renard   First implementat...
306
307
308
	availableColors : [
	               {'color' : '#000000', 'value' : 'Black'},
	               {'color' : '#0000FF', 'value' : 'Blue'},
24b02d83   Benjamin Renard   Add definition of...
309
310
	               {'color' : '#FF0000', 'value' : 'Red'},
	               {'color' : '#00FF00', 'value' : 'Green'}
abe09878   Benjamin Renard   Add panels and ax...
311
312
313
	],
	
	availableBackgroundColors : [
a0bf9157   Benjamin Renard   Add tick plot and...
314
315
		           {'color' : 'none', 'value' : 'None'},
		           {'color' : '#0000FF', 'value' : 'Blue'},
24b02d83   Benjamin Renard   Add definition of...
316
317
		           {'color' : '#FF0000', 'value' : 'Red'},
		           {'color' : '#00FF00', 'value' : 'Green'}
a0bf9157   Benjamin Renard   Add tick plot and...
318
319
320
321
322
	],
	
	availableStatusBarPositions : [
                   {'key' : 'top', 'value' : 'Top'},
                   {'key' : 'bottom', 'value' : 'Bottom'}
17433635   Benjamin Renard   Add series and sp...
323
324
	],
	
a0bf9157   Benjamin Renard   Add tick plot and...
325
326
327
328
	availableStatusBarColorMaps : [
                   {'key' : '0', 'value' : '0'},
                   {'key' : '1', 'value' : '1'},
                   {'key' : '2', 'value' : '2'}
003ba315   Benjamin Renard   Add Epoch Plot an...
329
330
331
332
333
334
335
336
337
338
339
	],
	
	availablePageLayouts : [
                   {'key' : 'vertical', 'value' : 'Vertical'},
                   {'key' : 'auto', 'value' : 'Auto'},
                   {'key' : 'manual', 'value' : 'Manual'}
    ],
    
    availableResamplingModes : [
                   {'key' : 'xparam', 'value' : 'X Parameter'},
                   {'key' : 'yparam', 'value' : 'Y Parameter'}
6a801541   Benjamin Renard   Add possibility t...
340
341
342
343
344
    ],
    
    availableDimsOnXAxis : [
                   {'key' : '0', 'value' : 'First dimension'},
                   {'key' : '1', 'value' : 'Second dimension'}  
24b02d83   Benjamin Renard   Add definition of...
345
346
347
348
349
350
    ],
    
    availableTimeTickTypes : [
                   {'key' : 'auto', 'value' : 'Auto'},
                   {'key' : 'time-step', 'value' : 'Time step'},
                   {'key' : 'nb-major', 'value' : 'Num. of major symb.'}
94abdb37   Benjamin Renard   Add params legend...
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
    ],
    
    availableLegendSeriesTypes : [
	               {'key' : 'text-line-symbol', 'value' : 'Text, Line & Symbols'},
                   {'key' : 'text-only', 'value' : 'Text only'}
    ],
    
    availableLegendSeriesPositions : [
                   {'key' : 'inside', 'value' : 'Inside'},
                   {'key' : 'outside', 'value' : 'Outside'}
    ],
    
    availableLegendSeriesIntervalInfoTypes : [
                   {'key' : 'index', 'value' : 'Interval Index'},
                   {'key' : 'start-stop', 'value' : 'Interval Start/Stop'}
339866c4   Benjamin Renard   Add text legend d...
366
367
368
369
370
371
372
	],
	
	availableLegendTextPositions : [
                   {'key' : 'right', 'value' : 'Right'},
                   {'key' : 'left', 'value' : 'Left'},
                   {'key' : 'top', 'value' : 'Top'},
                   {'key' : 'bottom', 'value' : 'Bottom'}
829160b3   Benjamin Renard   Add constants def...
373
374
375
376
377
378
	],
	
	availableConstantAxes : [
	               {'key' : 'x', 'value' : 'X / Time / Epoch'},
	               {'key' : 'y-left', 'value' : 'Y Left'},
	               {'key' : 'y-right', 'value' : 'Y Right'}
a8c54fb9   Benjamin Renard   Add text object p...
379
380
381
382
383
384
    ],
    
    availableTextAlignments : [
                   {'key' : 'left', 'value' : 'Left'},
                   {'key' : 'center', 'value' : 'Center'},
                   {'key' : 'right', 'value' : 'Right'}
486cc3c7   Benjamin Renard   Add fill elements...
385
386
387
388
389
390
    ],
    
    availableFillTypes : [
	               {'key' : 'serie-constant', 'value' : 'Serie / Constant'},
	               {'key' : 'serie-serie', 'value' : 'Serie / Serie'}    
	]
437c4dbc   Benjamin Renard   First implementat...
391
});