Bonjour à tous.

Nom : HG1.png
Affichages : 130
Taille : 107,7 Ko

Dans ce graphique, je voudrai que la tooltip change à chaque minute.
Sur l'axe des abscisses, nous avons des heures, mais dans les tables nous avons bien les minutes.
En fait, au départ, on m'avait demandé de n'afficher que des tranches horaires et maintenant ils veulent des minutes.

Voici mon code :
Code html : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
 
<!DOCTYPE html>
<HTML lang="fr">
 
<HEAD>
	<META http-equiv="x-ua-compatible" content="IE=edge" charset="UTF-8">
    <TITLE>SNA-RP / SAI</TITLE>
 
    <!-- jQuery 3.3.1 -->
    <SCRIPT type="text/javascript" src="LIBRAIRIES/jquery-3.3.1.min.js"></SCRIPT>
 
    <!-- Bootstrap framework 3.2.0 -->
    <LINK rel="stylesheet" href="LIBRAIRIES/bootstrap_3.2.0.min.css">
 
    <!-- FontAwesome 4.5.0 -->
	<!--<LINK href="http://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet">-->
    <LINK rel="stylesheet" href="LIBRAIRIES/fontawesome-free-5.12.1-web/css/all.min.css">
 
    <!-- Echarts 4.0.3 -->
    <!-- <SCRIPT type="text/javascript" src="scripts/echarts-4.0.3.min.js"></SCRIPT> -->
    <!-- Echarts 4.1.0 -->
    <SCRIPT type="text/javascript" src="LIBRAIRIES/echarts-4.1.0.min.js"></SCRIPT>
 
    <!-- jsPDF 1.3.5 -->
    <SCRIPT type="text/javascript" src="LIBRAIRIES/jspdf-1.3.5.min.js"></SCRIPT>
 
    <!-- FileSaver 1.1.20 Attention, les versions supérieures provoque une erreur -->
<!--	<SCRIPT type="text/javascript" src="LIBRAIRIES/FileSaver.js-master/dist/FileSaver_1.1.20151003.js"></SCRIPT>-->
	<SCRIPT type="text/javascript" src="LIBRAIRIES/FileSaver.js-master/dist/FileSaver.min_1.1.20151003.js"></SCRIPT>
 
    <!-- JQuery UI et son datepicker -->
    <SCRIPT src="LIBRAIRIES/jquery-ui-1.12.1/jquery-ui.min.js"></SCRIPT>
    <SCRIPT src="LIBRAIRIES/jquery-ui-1.12.1/datepicker-fr.js"></SCRIPT>
 
    <LINK rel="stylesheet" href="LIBRAIRIES/jquery-ui-1.12.1/jquery-ui.min.css">
 
    <LINK rel="stylesheet" href="styles/main.css">
    <LINK rel="stylesheet" href="styles/StatSAI.css">
</HEAD>
 
<BODY>
    <NAV class="navbar navbar-inverse navbar-fixed-top"></NAV>
    <DIV id="main">
		<DIV id="div_titre" class="titre-page"> - HEURES GLISSANTES PLATEFORMES - </DIV>
        <DIV id="calendar" class="row">
            <DIV class="col-md-2">
                <DIV class="input-group"><BR/>
                   <INPUT class="form-control btn btn-primary" name="date" id="date" type="text";></INPUT>
                </DIV>
          </DIV>
            <DIV class="col-md-2">
                <DIV class="input-group"><BR/>
					<BUTTON type="button" id="btn-save-pdf" class="btn btn-default">
					<DIV><I class="fa fa-download fa-lg"></I> Télécharger en PDF</DIV></BUTTON>
				</DIV>
		  </DIV>
                <DIV class="input-group"><BR/>
            <DIV class="col-md-12" id="div-info">
                <DIV class="icon-p-info"></DIV>
                <DIV class="message-p-info"></DIV>
            </DIV>
					</DIV>
      </DIV>
</DIV>
    <FOOTER class="footer">
    </FOOTER>
</BODY>
 
<SCRIPT type="text/javascript" src="scripts/FonctionsCommunes.js"></SCRIPT>
<SCRIPT type="text/javascript" src="scripts/HeuresGlissantes_PLTF.js"></SCRIPT>
Code javascript : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
 
	/*----------------------------------------------------------------------------------------------*/		
	/* VARIABLES CONSTANTES POUR LES GRAPHES                                                        */		
	/*----------------------------------------------------------------------------------------------*/		
 
	var WLigneCSV = "H;TRANCHES HORAIRES (TU);NB DEPART;NB ARRIVEE;TOTAL" + "\n";
 
	var WPaddingTexte_xAxis = 20;
	var WPaddingTexte_yAxis = 20;
	var P_AxeTextSize = 15;
	var P_CoulFond = "#ffffff"; // blanc
	var P_TextColor = "#5d6d7e";
	var P_Colors = ["#FE0000"];
	var P_TAB_Colors = ['#ff0000', '#0000FF', '#008000']; // Couleur des courbes.
 
	/*----------------------------------------------------------------------------------------------*/		
	/* Graph HEURES GLISSANTES - GRAND                                                              */		
	/*----------------------------------------------------------------------------------------------*/		
	function createGraph_HG(P_Plateforme, jsonData, P_dayInit){
		var i = 0,
			WTot_Gen = 0,
			WTot_Dep = 0,
			WTot_Arr = 0,
			TranchesHoraires_X = [],
			SommeTH_Y = [],
			TotalARR_Y = [],
			TotalDEP_Y = [],
			Interv = [],
			Interv2 = [];
 
		if (P_Plateforme == "LFPG")
			{
//console.log("jsonData.length="+jsonData.length);				
				// Remplissage des tableaux SANS somme par heure
				while (i < jsonData.length){
					var hdeb = jsonData[i][1].slice(0,2);
					var WTotal = parseInt(jsonData[i][20]);
					var WTotARR = parseInt(jsonData[i][10]);
					var WTotDEP = parseInt(jsonData[i][19]);
					var WDebInt = jsonData[i][1].slice(0,4); // Pour ne pas prendre les secondes
					var WFinInt = jsonData[i][1].slice(7,12); // Pour ne pas prendre les secondes
					var WInterval = WDebInt + " - " + WFinInt;
					var I2 = 0
					if (i < jsonData.length - 1)
					{
						I2 = i + 1;
					}
					else
					{
						I2 = i;
					}
					var WDebInt2 = jsonData[I2][1].slice(0,4);
					var WInterval2 = WDebInt + " - " + WDebInt2;
 
//console.log("jsonData[i][1]="+jsonData[i][1]);					
//console.log("WDebInt="+WDebInt);
//console.log("WFinInt="+WFinInt);
//console.log("WInterval="+i + " -> " + WInterval);					
 
					TranchesHoraires_X.push(hdeb);
					Interv.push(WInterval);
					Interv2.push(WInterval2);
					SommeTH_Y.push(WTotal);
					TotalARR_Y.push(WTotARR);
					TotalDEP_Y.push(WTotDEP);
					if (jsonData[i][1].slice(2,4) == "00")
						{
							WTot_Arr = WTot_Arr + WTotARR;
							WTot_Dep = WTot_Dep + WTotDEP;
							WTot_Gen = WTot_Gen + WTotal;
						}
					i += 1;
				}
console.log("Interv2="+JSON.stringify(Interv2));
console.log("Interv2.length="+Interv2.length);				
				if (jsonData.length <= 0)
					{
						var WTexteInfo = "PAS DE DONNEES";
					}
				else
					{
						var WTexteInfo = "Total Mvts (avec QFU) = " + WTot_Gen + " - Total Arr = " + WTot_Arr + " - Total Dep = " + WTot_Dep;
		//				$("#Info_lfpo_hg").html('<strong>' + WTexteInfo + '</strong>');
					}
				var HG_Chart_C2 = echarts.init(document.getElementById("lfpg_hg"));  //
 
//console.log('$("#lfpg_hg").width()='+$("#lfpg_hg").width());				
 
				val = ($("#lfpg_hg").width() / 70);
				padding_array = [0, 0, 0, val];					// [haut, droit, bas, gauche]
				P_Titre = "LFPG - " + P_dayInit;
				var P_CoulFondGraph = "#FFFFD8"; //"#FFF7FC"; //"#FFFFC8";
			}
		if (P_Plateforme == "LFPO")
			{
				// Remplissage des tableaux SANS somme par heure
				while (i < jsonData.length){
					var hdeb = jsonData[i][1].slice(0,2);
					var WTotal = parseInt(jsonData[i][16]);
					var WTotARR = parseInt(jsonData[i][8]);
					var WTotDEP = parseInt(jsonData[i][15]);
					var WDebInt = jsonData[i][1].slice(0,4); // Pour ne pas prendre les secondes
					var WFinInt = jsonData[i][1].slice(7,12); // Pour ne pas prendre les secondes
					var WInterval = WDebInt + " - " + WFinInt;
					TranchesHoraires_X.push(hdeb);
					Interv.push(WInterval);
					TotalARR_Y.push(WTotARR);
					TotalDEP_Y.push(WTotDEP);
					SommeTH_Y.push(WTotal);
					if (jsonData[i][1].slice(2,4) == "00")
						{
							WTot_Arr = WTot_Arr + WTotARR;
							WTot_Dep = WTot_Dep + WTotDEP;
							WTot_Gen = WTot_Gen + WTotal;
						}
					i += 1;
				}
				if (jsonData.length <= 0)
					{
						var WTexteInfo = "PAS DE DONNEES";
					}
				else
					{
						var WTexteInfo = "Total Mvts = " + WTot_Gen + " - Total Arr = " + WTot_Arr + " - Total Dep = " + WTot_Dep;
		//				$("#Info_lfpo_hg").html('<strong>' + WTexteInfo + '</strong>');
					}
				var HG_Chart_C1 = echarts.init(document.getElementById("lfpo_hg"));  //
 
//console.log('$("#lfpo_hg").width()='+$("#lfpo_hg").width());				
 
				val = ($("#lfpo_hg").width() / 70);
				padding_array = [0, 0, 0, val];					// [haut, droit, bas, gauche]
				P_Titre = "LFPO - " + P_dayInit;
				var P_CoulFondGraph = "#E1FFE9";
			}
		if (P_Plateforme == "LFPB")
			{
				// Remplissage des tableaux SANS somme par heure
				while (i < jsonData.length){
					var hdeb = jsonData[i][1].slice(0,2);
					var WTotal = parseInt(jsonData[i][14]);
					var WTotARR = parseInt(jsonData[i][7]);
					var WTotDEP = parseInt(jsonData[i][13]);
					var WDebInt = jsonData[i][1].slice(0,4); // Pour ne pas prendre les secondes
					var WFinInt = jsonData[i][1].slice(7,12); // Pour ne pas prendre les secondes
					var WInterval = WDebInt + " - " + WFinInt;
					TranchesHoraires_X.push(hdeb);
					Interv.push(WInterval);
					SommeTH_Y.push(WTotal);
					TotalARR_Y.push(WTotARR);
					TotalDEP_Y.push(WTotDEP);
					if (jsonData[i][1].slice(2,4) == "00")
						{
							WTot_Arr = WTot_Arr + WTotARR;
							WTot_Dep = WTot_Dep + WTotDEP;
							WTot_Gen = WTot_Gen + WTotal;
						}
					i += 1;
				}
				if (jsonData.length <= 0)
					{
						var WTexteInfo = "PAS DE DONNEES";
					}
				else
					{
						var WTexteInfo = "Total Mvts (avec QFU) = " + WTot_Gen + " - Total Arr = " + WTot_Arr + " - Total Dep = " + WTot_Dep;
		//				$("#Info_lfpo_hg").html('<strong>' + WTexteInfo + '</strong>');
					}
				var HG_Chart_C3 = echarts.init(document.getElementById("lfpb_hg_left"));  //
				val = ($("#lfpb_hg_left").width() / 120);
				padding_array = [0, 0, 0, val];					// [haut, droit, bas, gauche]
				P_Titre = "LFPB - " + P_dayInit;
				var P_CoulFondGraph = "#DDF6FF";
			}
 
		if (P_Plateforme == "LFOB")
			{
				// Remplissage des tableaux SANS somme par heure
				while (i < jsonData.length){
					var hdeb = jsonData[i][1].slice(0,2);
					var WTotal = parseInt(jsonData[i][4]);
					var WTotARR = parseInt(jsonData[i][2]);
					var WTotDEP = parseInt(jsonData[i][3]);
					var WDebInt = jsonData[i][1].slice(0,4); // Pour ne pas prendre les secondes
					var WFinInt = jsonData[i][1].slice(7,12); // Pour ne pas prendre les secondes
					var WInterval = WDebInt + " - " + WFinInt;
					TranchesHoraires_X.push(hdeb);
					Interv.push(WInterval);
					SommeTH_Y.push(WTotal);
					TotalARR_Y.push(WTotARR);
					TotalDEP_Y.push(WTotDEP);
					if (jsonData[i][1].slice(2,4) == "00")
						{
							WTot_Arr = WTot_Arr + WTotARR;
							WTot_Dep = WTot_Dep + WTotDEP;
							WTot_Gen = WTot_Gen + WTotal;
						}
					i += 1;
				}
				if (jsonData.length <= 0)
					{
						var WTexteInfo = "PAS DE DONNEES";
					}
				else
					{
						var WTexteInfo = "Total Mvts = " + WTot_Gen + " - Total Arr = " + WTot_Arr + " - Total Dep = " + WTot_Dep;
		//				$("#Info_lfpo_hg").html('<strong>' + WTexteInfo + '</strong>');
					}
				var HG_Chart_C4 = echarts.init(document.getElementById("lfob_hg_right"));  //
				val = ($("#lfob_hg_right").width() / 120);
				padding_array = [0, 0, 0, val];					// [haut, droit, bas, gauche]
				P_Titre = "LFOB - " + P_dayInit;
				var P_CoulFondGraph = "#FEEDED";
			}
 
//console.log("TranchesHoraires_X="+JSON.stringify( TranchesHoraires_X));
//console.log("SommeTH_Y="+JSON.stringify( SommeTH_Y));
 
		var HG_ChartOpt = {
			backgroundColor: P_CoulFond,
			color: P_TAB_Colors,
			textStyle: {
				fontFamily: 'sans-serif'
			},
			title: {
				padding: [15, 0, 0, 0],					// Title space around content // [haut, droit, bas, gauche]
				left: 'center',							// Distance between grid component and the left side of the container
				text: P_Titre,
				textStyle:	{
					color: '#000',
					fontStyle: 'normal',
					fontWeight: 'bold',
					fontFamily: 'sans-serif',
					fontSize: 20,
				},
			},
			grid: {
				show: true,							// Whether to show the grid in rectangular coordinate
				backgroundColor: P_CoulFondGraph, // fond du graphe
				top: 70,								// Distance between grid component and the top side of the container
				bottom: 100,								// Distance between grid component and the bottom side of the container
				left: 60,								// Distance between grid component and the left side of the container
				right: 30								// Distance between grid component and the right side of the container
			},
			legend: {
				show: true,
				type : 'plain',
				orient: 'horizontal',
				borderColor: '#95a5a6',
				borderWidth: 0, // Permet de ne pas avoir de bordure sans supprimer les paramètres.
				borderRadius: 7,
				shadowColor: 'rgba(0, 0, 0, 0.5)',
				shadowBlur: 10,
				itemWidth: 30,
				itemHeight: 11,
				left: 'center',
				top: 40
			},
//			axisPointer: {
//				show: true, 
//				type: 'line',
//				lineStyle: {
//					type: 'dashed',
//					width: 1 						// Epaisseur de la ligne verticale
//				},
//				label: {
//					backgroundColor: '#777'
//				}
//			},			
			xAxis: {									// The X axis in Cartesian (rect.) coordinate
				axisLine: {
					lineStyle: {
						color: 'rgb(105,105,105)',
						width: 2,
						onZero: true,
					}
				},
				splitArea: { 							// Permet de mettre un fond de couleurs différentes
					show: false,
					areaStyle:{
						color:['rgba(144,238,144,0.3)','rgba(135,200,250,0.3)']
					},
				},
				splitLine: {
					show: true, // True => quadrillage VERTICAL sur le graphe
					lineStyle: {
						color: "#CCC",
						type: "dotted",
						width: 1
					},
				},
				type: 'category',
//				name: 'Heures Glissantes (TU)' + '\n\n' + WTexteInfo,
				name: 'Heures Glissantes (TU)' + '\n\n',// + WTexteInfo,
				nameLocation: 'center',
				nameTextStyle: {
					padding: WPaddingTexte_xAxis,
					fontWeight: 'bold',
					color: P_TextColor,
					fontSize : P_AxeTextSize
				},
				max: 'dataMax',
				position: 'bottom',
				boundaryGap: false,
				axisTick: {
					show: true,					 		// Whether to show the axis tick
					inside: false,
					length: 3
				},
				axisLabel: {
					interval: 59, 						// Définit le nombre d'intervals sur xAxis => 59 car 60 val. par heure
					rotate:0,
					margin: 10,
					showMinLabel: false, // Affiche la valeur mini de l'axe des X => 00
					align : 'center',
//					padding: padding_array, 			// [haut, droit, bas, gauche] // Plus nécessaire, remplacer par boudarygap:false + align:c'enter'
					color: 'rgb(050,050,050)'
				},
//				axisPointer: {
//					show:true,
//					label : {
//					formatter: function (params) {
//						return Interv[parseInt(params.value) * 60];
//						}
//					},
//				},
				data: TranchesHoraires_X
			},
			yAxis: {
				axisLine: {
					lineStyle: {
						color: 'rgb(165,165,165)',
						width: 2
					}
				},
				axisTick: {
					length: 3,
				},
				axisLabel: { // Settings related to axis label
					color: 'rgb(070,070,070)',
					formatter: '{value}' // En mettant au format text, on enlève le formattage : 1,400 au lieu de 1400
				},
				splitLine: {
					lineStyle: {
						width: 1,
						type: "dotted"
					}
				},
				type: 'value',
				scale: true, // Permet d'avoir une échelle plus adaptée, tenant compte des min et max
				name: 'Mouvements',
				nameLocation: 'center',
				nameRotate: 90,
				nameTextStyle: {
					padding: WPaddingTexte_yAxis,
					fontWeight: 'bold',
					color: P_TextColor,
					fontSize : P_AxeTextSize
				},
				axisLabel: { 							// Settings related to axis label
					color: 'rgb(070,070,070)'
				},
//				axisPointer: {
//					show:true,
//					label: {
//						formatter: function (params) {
//							return parseInt(params.value);// + "Affiche la valeur de la position de la souris pour l'axe Y";
//						}
//					}
//				}
			},
			tooltip: {
				show: true,
				trigger: 'axis', 						// Triggered by axes.
				axisPointer: {
					show: true,
					type: 'line',
					label : {
						formatter: function (params) {
							var WI = Interv[parseInt(params.value) * 60];
console.log("Interv2[parseInt(params.value)]="+Interv2[parseInt(params.value)]);							
							var WI1 = WI.slice(0, 2);
							var WI2 = WI.slice(2,4);
							var WI3 = WI.slice(7, 9);
							var WI4 = WI.slice(9,11);
							WI5 = WI1 + "h" + WI2 + " - " + WI3 + "h" + WI4;
							return WI5;
//						return Interv[parseInt(params.value) * 60]; // * 60 => on se déplace de 60 dans le tableau de 1440 items
//						return ""; // pour ne rien afficher dans le label de la bulle d'information
						}
					},
					lineStyle: {
						width: 1 						// Epaisseur de la ligne verticale
					}
				}
			},
			toolbox: {									// Cartouche en haut à droite
				show: true,
				padding: [10, 15, 0, 0],	// [haut, droit, bas, gauche]
				itemSize: 14,
				itemGap: 5,
				showTitle: true,		
				feature: {
					restore: {
						show: true,
						title: 'Rechargement'
					},
					magicType: {
						type: ['line', 'bar'],
						title: {
							line: 'Ligne',
							bar: 'Histo.'
						}
					},
					saveAsImage: {
						title:'Sauvegarde' + '\n' + 'PNG'
					},
//            myTool1: {
//                show: true,
//                title: 'Infos masquées',
//                icon: 'path://M432.45,595.444c0,2.177-4.661,6.82-11.305,6.82c-6.475,0-11.306-4.567-11.306-6.82s4.852-6.812,11.306-6.812C427.841,588.632,432.452,593.191,432.45,595.444L432.45,595.444z M421.155,589.876c-3.009,0-5.448,2.495-5.448,5.572s2.439,5.572,5.448,5.572c3.01,0,5.449-2.495,5.449-5.572C426.604,592.371,424.165,589.876,421.155,589.876L421.155,589.876z M421.146,591.891c-1.916,0-3.47,1.589-3.47,3.549c0,1.959,1.554,3.548,3.47,3.548s3.469-1.589,3.469-3.548C424.614,593.479,423.062,591.891,421.146,591.891L421.146,591.891zM421.146,591.891',
//                onclick: function () {
//						if (P_Plateforme == "LFPO")
//							{
//								$('#Info_lfpo_hg').css('display','grid'); // Effacement de la DIV Info_lfpo_hg
//							}
//						if (P_Plateforme == "LFPG")
//							{
//								$('#Info_lfpg_hg').css('display','grid'); // Effacement de la DIV Info_lfpo_hg
//							}
//						if (P_Plateforme == "LFPB")
//							{
//								$('#Info_lfpb_hg').css('display','grid'); // Effacement de la DIV Info_lfpo_hg
//							}
//                }
//            },
					dataView: {
						show: true, // Affiche ou non l'icône pour afficher les données utilisées.
						readOnly: false,
						backgroundColor: '#88ABD9',
						title: 'Export' + '\n' + 'CSV',
						lang: ['Données utilisées pour le graphique...', 'Retour', 'Export CSV'], 
						optionToContent: function(opt) {
							WLigneCSV = "H;TRANCHES HORAIRES (TU);NB DEPART;NB ARRIVEE;TOTAL" + "\n";
							var axisData = opt.xAxis[0].data;
							var series = opt.series;
							var WTable01 = '<div style="width:100%" id="ID_Table_Data">';
							WTable01 = WTable01 + '<table class="table-Data-Source">';
							WTable01 = WTable01 + '<thead><tr class="table-Data-Source-hover">';
							WTable01 = WTable01 + '<th class="text-center" style="width:100px">H</th>'
							WTable01 = WTable01 + '<th class="text-center" style="width:300px">Tranches Horaires (TU)</th>'
							WTable01 = WTable01 + '<th class="text-center" style="width:120px">' + series[0].name + '</th>';
							WTable01 = WTable01 + '<th class="text-center" style="width:120px">' + series[1].name + '</th>';
							WTable01 = WTable01 + '<th class="text-center" style="width:300px">' + series[2].name + '</th>';
							WTable01 = WTable01 + '</tr></thead>';
							WTable01 = WTable01 + '<tbody class="table-hover">';
							for (var i = 0, l = axisData.length; i < l; i++) {
								WLigneCSV = WLigneCSV + TranchesHoraires_X[i] + ";" + Interv[parseInt(i)] + ";";
								WLigneCSV = WLigneCSV + series[1].data[i] + ";" + series[2].data[i] + ";" + series[0].data[i];
								WLigneCSV = WLigneCSV + "\n";
								WTable01 += '<tr class="table-Data-Source-hover">'
										 + '<td class="text-center">' + TranchesHoraires_X[i] + '</td>'
										 + '<td class="text-center">' + Interv[parseInt(i)] + '</td>'
										 + '<td class="text-center">' + series[0].data[i] + '</td>'
										 + '<td class="text-center">' + series[1].data[i] + '</td>'
										 + '<td class="text-center">' + series[2].data[i] + '</td>'
										 + '</tr>';
							}
							WTable01 += '</div></tbody></table>';
							return WTable01;
						},
						contentToOption: function(){ // Va permetrtre de gérer l'exportation en CSV
							var NomCSV = "HeuresGlissantes_" + P_Plateforme + "_" + P_dayInit;
							var Ext = ".CSV";
							var FicCSV = NomCSV + Ext;
// Ecrire le contenu de la variable WLigneCSV dans un fichier
							download(FicCSV, WLigneCSV);
						}
					}
				}
			},
			series : [
				{
					type: 'line',
					name: 'Arr',					// Series name used for displaying in tooltip and filtering with legend
					symbolSize: 7,
					showSymbol: false,					// Whether to show symbol. It would be shown during tooltip hover
					lineStyle: {
						width: 1,
						type: 'solid' //'dotted' / 'dashed'
					},
					smooth: false,						// Permet de lisser ou non les courbes
					data: TotalARR_Y
				},
				{
					type: 'line',
					name: 'Dép',					// Series name used for displaying in tooltip and filtering with legend
					symbolSize: 7,
					showSymbol: false,					// Whether to show symbol. It would be shown during tooltip hover
					lineStyle: {
						width: 1,
						type: 'solid' //'dotted' / 'dashed'
					},
					smooth: false,						// Permet de lisser ou non les courbes
					data: TotalDEP_Y
				},
				{
					type: 'line',
					name: 'Arr + Dép',					// Series name used for displaying in tooltip and filtering with legend
					symbolSize: 7,
					showSymbol: false,					// Whether to show symbol. It would be shown during tooltip hover
					lineStyle: {
						width: 1,
						type: 'solid' //'dotted' / 'dashed'
					},
					smooth: false,						// Permet de lisser ou non les courbes
					data: SommeTH_Y
				}
			]
		};
 
		if (P_Plateforme == "LFPO")
			{
				HG_Chart_C1.setOption(HG_ChartOpt);
				var HG_Chart_C1 = echarts.init(document.getElementById("lfpo_hg"));  //
			}
		if (P_Plateforme == "LFPG")
			{
				HG_Chart_C2.setOption(HG_ChartOpt);
				var HG_Chart_C2 = echarts.init(document.getElementById("lfpg_hg"));  //
			}
		if (P_Plateforme == "LFPB")
			{
				HG_Chart_C3.setOption(HG_ChartOpt);
				var HG_Chart_C3 = echarts.init(document.getElementById("lfpb_hg_left"));  //
			}
		if (P_Plateforme == "LFOB")
			{
				HG_Chart_C4.setOption(HG_ChartOpt);
				var HG_Chart_C4 = echarts.init(document.getElementById("lfob_hg_right"));  //
			}
	}

Les valeurs que je peux vous fournir :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
 
TranchesHoraires_X=["00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","00","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","01","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","02","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","03","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","04","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","05","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","06","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","07","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","08","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","18","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","19","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","20","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","21","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","22","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23","23"]
 
Interv=["0000 - 0059","0001 - 0100","0002 - 0101","0003 - 0102","0004 - 0103","0005 - 0104","0006 - 0105","0007 - 0106","0008 - 0107","0009 - 0108","0010 - 0109","0011 - 0110","0012 - 0111","0013 - 0112","0014 - 0113","0015 - 0114","0016 - 0115","0017 - 0116","0018 - 0117","0019 - 0118","0020 - 0119","0021 - 0120","0022 - 0121","0023 - 0122","0024 - 0123","0025 - 0124","0026 - 0125","0027 - 0126","0028 - 0127","0029 - 0128","0030 - 0129","0031 - 0130","0032 - 0131","0033 - 0132","0034 - 0133","0035 - 0134","0036 - 0135","0037 - 0136","0038 - 0137","0039 - 0138","0040 - 0139","0041 - 0140","0042 - 0141","0043 - 0142","0044 - 0143","0045 - 0144","0046 - 0145","0047 - 0146","0048 - 0147","0049 - 0148","0050 - 0149","0051 - 0150","0052 - 0151","0053 - 0152","0054 - 0153","0055 - 0154","0056 - 0155","0057 - 0156","0058 - 0157","0059 - 0158","0100 - 0159","0101 - 0200","0102 - 0201","0103 - 0202","0104 - 0203","0105 - 0204","0106 - 0205","0107 - 0206","0108 - 0207","0109 - 0208","0110 - 0209","0111 - 0210","0112 - 0211","0113 - 0212","0114 - 0213","0115 - 0214","0116 - 0215","0117 - 0216","0118 - 0217","0119 - 0218","0120 - 0219","0121 - 0220","0122 - 0221","0123 - 0222","0124 - 0223","0125 - 0224","0126 - 0225","0127 - 0226","0128 - 0227","0129 - 0228","0130 - 0229","0131 - 0230","0132 - 0231","0133 - 0232","0134 - 0233","0135 - 0234","0136 - 0235","0137 - 0236","0138 - 0237","0139 - 0238","0140 - 0239","0141 - 0240","0142 - 0241","0143 - 0242","0144 - 0243","0145 - 0244","0146 - 0245","0147 - 0246","0148 - 0247","0149 - 0248","0150 - 0249","0151 - 0250","0152 - 0251","0153 - 0252","0154 - 0253","0155 - 0254","0156 - 0255","0157 - 0256","0158 - 0257","0159 - 0258","0200 - 0259","0201 - 0300","0202 - 0301","0203 - 0302","0204 - 0303","0205 - 0304","0206 - 0305","0207 - 0306","0208 - 0307","0209 - 0308","0210 - 0309","0211 - 0310","0212 - 0311","0213 - 0312","0214 - 0313","0215 - 0314","0216 - 0315","0217 - 0316","0218 - 0317","0219 - 0318","0220 - 0319","0221 - 0320","0222 - 0321","0223 - 0322","0224 - 0323","0225 - 0324","0226 - 0325","0227 - 0326","0228 - 0327","0229 - 0328","0230 - 0329","0231 - 0330","0232 - 0331","0233 - 0332","0234 - 0333","0235 - 0334","0236 - 0335","0237 - 0336","0238 - 0337","0239 - 0338","0240 - 0339","0241 - 0340","0242 - 0341","0243 - 0342","0244 - 0343","0245 - 0344","0246 - 0345","0247 - 0346","0248 - 0347","0249 - 0348","0250 - 0349","0251 - 0350","0252 - 0351","0253 - 0352","0254 - 0353","0255 - 0354","0256 - 0355","0257 - 0356","0258 - 0357","0259 - 0358","0300 - 0359","0301 - 0400","0302 - 0401","0303 - 0402","0304 - 0403","0305 - 0404","0306 - 0405","0307 - 0406","0308 - 0407","0309 - 0408","0310 - 0409","0311 - 0410","0312 - 0411","0313 - 0412","0314 - 0413","0315 - 0414","0316 - 0415","0317 - 0416","0318 - 0417","0319 - 0418","0320 - 0419","0321 - 0420","0322 - 0421","0323 - 0422","0324 - 0423","0325 - 0424","0326 - 0425","0327 - 0426","0328 - 0427","0329 - 0428","0330 - 0429","0331 - 0430","0332 - 0431","0333 - 0432","0334 - 0433","0335 - 0434","0336 - 0435","0337 - 0436","0338 - 0437","0339 - 0438","0340 - 0439","0341 - 0440","0342 - 0441","0343 - 0442","0344 - 0443","0345 - 0444","0346 - 0445","0347 - 0446","0348 - 0447","0349 - 0448","0350 - 0449","0351 - 0450","0352 - 0451","0353 - 0452","0354 - 0453","0355 - 0454","0356 - 0455","0357 - 0456","0358 - 0457","0359 - 0458","0400 - 0459","0401 - 0500","0402 - 0501","0403 - 0502","0404 - 0503","0405 - 0504","0406 - 0505","0407 - 0506","0408 - 0507","0409 - 0508","0410 - 0509","0411 - 0510","0412 - 0511","0413 - 0512","0414 - 0513","0415 - 0514","0416 - 0515","0417 - 0516","0418 - 0517","0419 - 0518","0420 - 0519","0421 - 0520","0422 - 0521","0423 - 0522","0424 - 0523","0425 - 0524","0426 - 0525","0427 - 0526","0428 - 0527","0429 - 0528","0430 - 0529","0431 - 0530","0432 - 0531","0433 - 0532","0434 - 0533","0435 - 0534","0436 - 0535","0437 - 0536","0438 - 0537","0439 - 0538","0440 - 0539","0441 - 0540","0442 - 0541","0443 - 0542","0444 - 0543","0445 - 0544","0446 - 0545","0447 - 0546","0448 - 0547","0449 - 0548","0450 - 0549","0451 - 0550","0452 - 0551","0453 - 0552","0454 - 0553","0455 - 0554","0456 - 0555","0457 - 0556","0458 - 0557","0459 - 0558","0500 - 0559","0501 - 0600","0502 - 0601","0503 - 0602","0504 - 0603","0505 - 0604","0506 - 0605","0507 - 0606","0508 - 0607","0509 - 0608","0510 - 0609","0511 - 0610","0512 - 0611","0513 - 0612","0514 - 0613","0515 - 0614","0516 - 0615","0517 - 0616","0518 - 0617","0519 - 0618","0520 - 0619","0521 - 0620","0522 - 0621","0523 - 0622","0524 - 0623","0525 - 0624","0526 - 0625","0527 - 0626","0528 - 0627","0529 - 0628","0530 - 0629","0531 - 0630","0532 - 0631","0533 - 0632","0534 - 0633","0535 - 0634","0536 - 0635","0537 - 0636","0538 - 0637","0539 - 0638","0540 - 0639","0541 - 0640","0542 - 0641","0543 - 0642","0544 - 0643","0545 - 0644","0546 - 0645","0547 - 0646","0548 - 0647","0549 - 0648","0550 - 0649","0551 - 0650","0552 - 0651","0553 - 0652","0554 - 0653","0555 - 0654","0556 - 0655","0557 - 0656","0558 - 0657","0559 - 0658","0600 - 0659","0601 - 0700","0602 - 0701","0603 - 0702","0604 - 0703","0605 - 0704","0606 - 0705","0607 - 0706","0608 - 0707","0609 - 0708","0610 - 0709","0611 - 0710","0612 - 0711","0613 - 0712","0614 - 0713","0615 - 0714","0616 - 0715","0617 - 0716","0618 - 0717","0619 - 0718","0620 - 0719","0621 - 0720","0622 - 0721","0623 - 0722","0624 - 0723","0625 - 0724","0626 - 0725","0627 - 0726","0628 - 0727","0629 - 0728","0630 - 0729","0631 - 0730","0632 - 0731","0633 - 0732","0634 - 0733","0635 - 0734","0636 - 0735","0637 - 0736","0638 - 0737","0639 - 0738","0640 - 0739","0641 - 0740","0642 - 0741","0643 - 0742","0644 - 0743","0645 - 0744","0646 - 0745","0647 - 0746","0648 - 0747","0649 - 0748","0650 - 0749","0651 - 0750","0652 - 0751","0653 - 0752","0654 - 0753","0655 - 0754","0656 - 0755","0657 - 0756","0658 - 0757","0659 - 0758","0700 - 0759","0701 - 0800","0702 - 0801","0703 - 0802","0704 - 0803","0705 - 0804","0706 - 0805","0707 - 0806","0708 - 0807","0709 - 0808","0710 - 0809","0711 - 0810","0712 - 0811","0713 - 0812","0714 - 0813","0715 - 0814","0716 - 0815","0717 - 0816","0718 - 0817","0719 - 0818","0720 - 0819","0721 - 0820","0722 - 0821","0723 - 0822","0724 - 0823","0725 - 0824","0726 - 0825","0727 - 0826","0728 - 0827","0729 - 0828","0730 - 0829","0731 - 0830","0732 - 0831","0733 - 0832","0734 - 0833","0735 - 0834","0736 - 0835","0737 - 0836","0738 - 0837","0739 - 0838","0740 - 0839","0741 - 0840","0742 - 0841","0743 - 0842","0744 - 0843","0745 - 0844","0746 - 0845","0747 - 0846","0748 - 0847","0749 - 0848","0750 - 0849","0751 - 0850","0752 - 0851","0753 - 0852","0754 - 0853","0755 - 0854","0756 - 0855","0757 - 0856","0758 - 0857","0759 - 0858","0800 - 0859","0801 - 0900","0802 - 0901","0803 - 0902","0804 - 0903","0805 - 0904","0806 - 0905","0807 - 0906","0808 - 0907","0809 - 0908","0810 - 0909","0811 - 0910","0812 - 0911","0813 - 0912","0814 - 0913","0815 - 0914","0816 - 0915","0817 - 0916","0818 - 0917","0819 - 0918","0820 - 0919","0821 - 0920","0822 - 0921","0823 - 0922","0824 - 0923","0825 - 0924","0826 - 0925","0827 - 0926","0828 - 0927","0829 - 0928","0830 - 0929","0831 - 0930","0832 - 0931","0833 - 0932","0834 - 0933","0835 - 0934","0836 - 0935","0837 - 0936","0838 - 0937","0839 - 0938","0840 - 0939","0841 - 0940","0842 - 0941","0843 - 0942","0844 - 0943","0845 - 0944","0846 - 0945","0847 - 0946","0848 - 0947","0849 - 0948","0850 - 0949","0851 - 0950","0852 - 0951","0853 - 0952","0854 - 0953","0855 - 0954","0856 - 0955","0857 - 0956","0858 - 0957","0859 - 0958","0900 - 0959","0901 - 1000","0902 - 1001","0903 - 1002","0904 - 1003","0905 - 1004","0906 - 1005","0907 - 1006","0908 - 1007","0909 - 1008","0910 - 1009","0911 - 1010","0912 - 1011","0913 - 1012","0914 - 1013","0915 - 1014","0916 - 1015","0917 - 1016","0918 - 1017","0919 - 1018","0920 - 1019","0921 - 1020","0922 - 1021","0923 - 1022","0924 - 1023","0925 - 1024","0926 - 1025","0927 - 1026","0928 - 1027","0929 - 1028","0930 - 1029","0931 - 1030","0932 - 1031","0933 - 1032","0934 - 1033","0935 - 1034","0936 - 1035","0937 - 1036","0938 - 1037","0939 - 1038","0940 - 1039","0941 - 1040","0942 - 1041","0943 - 1042","0944 - 1043","0945 - 1044","0946 - 1045","0947 - 1046","0948 - 1047","0949 - 1048","0950 - 1049","0951 - 1050","0952 - 1051","0953 - 1052","0954 - 1053","0955 - 1054","0956 - 1055","0957 - 1056","0958 - 1057","0959 - 1058","1000 - 1059","1001 - 1100","1002 - 1101","1003 - 1102","1004 - 1103","1005 - 1104","1006 - 1105","1007 - 1106","1008 - 1107","1009 - 1108","1010 - 1109","1011 - 1110","1012 - 1111","1013 - 1112","1014 - 1113","1015 - 1114","1016 - 1115","1017 - 1116","1018 - 1117","1019 - 1118","1020 - 1119","1021 - 1120","1022 - 1121","1023 - 1122","1024 - 1123","1025 - 1124","1026 - 1125","1027 - 1126","1028 - 1127","1029 - 1128","1030 - 1129","1031 - 1130","1032 - 1131","1033 - 1132","1034 - 1133","1035 - 1134","1036 - 1135","1037 - 1136","1038 - 1137","1039 - 1138","1040 - 1139","1041 - 1140","1042 - 1141","1043 - 1142","1044 - 1143","1045 - 1144","1046 - 1145","1047 - 1146","1048 - 1147","1049 - 1148","1050 - 1149","1051 - 1150","1052 - 1151","1053 - 1152","1054 - 1153","1055 - 1154","1056 - 1155","1057 - 1156","1058 - 1157","1059 - 1158","1100 - 1159","1101 - 1200","1102 - 1201","1103 - 1202","1104 - 1203","1105 - 1204","1106 - 1205","1107 - 1206","1108 - 1207","1109 - 1208","1110 - 1209","1111 - 1210","1112 - 1211","1113 - 1212","1114 - 1213","1115 - 1214","1116 - 1215","1117 - 1216","1118 - 1217","1119 - 1218","1120 - 1219","1121 - 1220","1122 - 1221","1123 - 1222","1124 - 1223","1125 - 1224","1126 - 1225","1127 - 1226","1128 - 1227","1129 - 1228","1130 - 1229","1131 - 1230","1132 - 1231","1133 - 1232","1134 - 1233","1135 - 1234","1136 - 1235","1137 - 1236","1138 - 1237","1139 - 1238","1140 - 1239","1141 - 1240","1142 - 1241","1143 - 1242","1144 - 1243","1145 - 1244","1146 - 1245","1147 - 1246","1148 - 1247","1149 - 1248","1150 - 1249","1151 - 1250","1152 - 1251","1153 - 1252","1154 - 1253","1155 - 1254","1156 - 1255","1157 - 1256","1158 - 1257","1159 - 1258","1200 - 1259","1201 - 1300","1202 - 1301","1203 - 1302","1204 - 1303","1205 - 1304","1206 - 1305","1207 - 1306","1208 - 1307","1209 - 1308","1210 - 1309","1211 - 1310","1212 - 1311","1213 - 1312","1214 - 1313","1215 - 1314","1216 - 1315","1217 - 1316","1218 - 1317","1219 - 1318","1220 - 1319","1221 - 1320","1222 - 1321","1223 - 1322","1224 - 1323","1225 - 1324","1226 - 1325","1227 - 1326","1228 - 1327","1229 - 1328","1230 - 1329","1231 - 1330","1232 - 1331","1233 - 1332","1234 - 1333","1235 - 1334","1236 - 1335","1237 - 1336","1238 - 1337","1239 - 1338","1240 - 1339","1241 - 1340","1242 - 1341","1243 - 1342","1244 - 1343","1245 - 1344","1246 - 1345","1247 - 1346","1248 - 1347","1249 - 1348","1250 - 1349","1251 - 1350","1252 - 1351","1253 - 1352","1254 - 1353","1255 - 1354","1256 - 1355","1257 - 1356","1258 - 1357","1259 - 1358","1300 - 1359","1301 - 1400","1302 - 1401","1303 - 1402","1304 - 1403","1305 - 1404","1306 - 1405","1307 - 1406","1308 - 1407","1309 - 1408","1310 - 1409","1311 - 1410","1312 - 1411","1313 - 1412","1314 - 1413","1315 - 1414","1316 - 1415","1317 - 1416","1318 - 1417","1319 - 1418","1320 - 1419","1321 - 1420","1322 - 1421","1323 - 1422","1324 - 1423","1325 - 1424","1326 - 1425","1327 - 1426","1328 - 1427","1329 - 1428","1330 - 1429","1331 - 1430","1332 - 1431","1333 - 1432","1334 - 1433","1335 - 1434","1336 - 1435","1337 - 1436","1338 - 1437","1339 - 1438","1340 - 1439","1341 - 1440","1342 - 1441","1343 - 1442","1344 - 1443","1345 - 1444","1346 - 1445","1347 - 1446","1348 - 1447","1349 - 1448","1350 - 1449","1351 - 1450","1352 - 1451","1353 - 1452","1354 - 1453","1355 - 1454","1356 - 1455","1357 - 1456","1358 - 1457","1359 - 1458","1400 - 1459","1401 - 1500","1402 - 1501","1403 - 1502","1404 - 1503","1405 - 1504","1406 - 1505","1407 - 1506","1408 - 1507","1409 - 1508","1410 - 1509","1411 - 1510","1412 - 1511","1413 - 1512","1414 - 1513","1415 - 1514","1416 - 1515","1417 - 1516","1418 - 1517","1419 - 1518","1420 - 1519","1421 - 1520","1422 - 1521","1423 - 1522","1424 - 1523","1425 - 1524","1426 - 1525","1427 - 1526","1428 - 1527","1429 - 1528","1430 - 1529","1431 - 1530","1432 - 1531","1433 - 1532","1434 - 1533","1435 - 1534","1436 - 1535","1437 - 1536","1438 - 1537","1439 - 1538","1440 - 1539","1441 - 1540","1442 - 1541","1443 - 1542","1444 - 1543","1445 - 1544","1446 - 1545","1447 - 1546","1448 - 1547","1449 - 1548","1450 - 1549","1451 - 1550","1452 - 1551","1453 - 1552","1454 - 1553","1455 - 1554","1456 - 1555","1457 - 1556","1458 - 1557","1459 - 1558","1500 - 1559","1501 - 1600","1502 - 1601","1503 - 1602","1504 - 1603","1505 - 1604","1506 - 1605","1507 - 1606","1508 - 1607","1509 - 1608","1510 - 1609","1511 - 1610","1512 - 1611","1513 - 1612","1514 - 1613","1515 - 1614","1516 - 1615","1517 - 1616","1518 - 1617","1519 - 1618","1520 - 1619","1521 - 1620","1522 - 1621","1523 - 1622","1524 - 1623","1525 - 1624","1526 - 1625","1527 - 1626","1528 - 1627","1529 - 1628","1530 - 1629","1531 - 1630","1532 - 1631","1533 - 1632","1534 - 1633","1535 - 1634","1536 - 1635","1537 - 1636","1538 - 1637","1539 - 1638","1540 - 1639","1541 - 1640","1542 - 1641","1543 - 1642","1544 - 1643","1545 - 1644","1546 - 1645","1547 - 1646","1548 - 1647","1549 - 1648","1550 - 1649","1551 - 1650","1552 - 1651","1553 - 1652","1554 - 1653","1555 - 1654","1556 - 1655","1557 - 1656","1558 - 1657","1559 - 1658","1600 - 1659","1601 - 1700","1602 - 1701","1603 - 1702","1604 - 1703","1605 - 1704","1606 - 1705","1607 - 1706","1608 - 1707","1609 - 1708","1610 - 1709","1611 - 1710","1612 - 1711","1613 - 1712","1614 - 1713","1615 - 1714","1616 - 1715","1617 - 1716","1618 - 1717","1619 - 1718","1620 - 1719","1621 - 1720","1622 - 1721","1623 - 1722","1624 - 1723","1625 - 1724","1626 - 1725","1627 - 1726","1628 - 1727","1629 - 1728","1630 - 1729","1631 - 1730","1632 - 1731","1633 - 1732","1634 - 1733","1635 - 1734","1636 - 1735","1637 - 1736","1638 - 1737","1639 - 1738","1640 - 1739","1641 - 1740","1642 - 1741","1643 - 1742","1644 - 1743","1645 - 1744","1646 - 1745","1647 - 1746","1648 - 1747","1649 - 1748","1650 - 1749","1651 - 1750","1652 - 1751","1653 - 1752","1654 - 1753","1655 - 1754","1656 - 1755","1657 - 1756","1658 - 1757","1659 - 1758","1700 - 1759","1701 - 1800","1702 - 1801","1703 - 1802","1704 - 1803","1705 - 1804","1706 - 1805","1707 - 1806","1708 - 1807","1709 - 1808","1710 - 1809","1711 - 1810","1712 - 1811","1713 - 1812","1714 - 1813","1715 - 1814","1716 - 1815","1717 - 1816","1718 - 1817","1719 - 1818","1720 - 1819","1721 - 1820","1722 - 1821","1723 - 1822","1724 - 1823","1725 - 1824","1726 - 1825","1727 - 1826","1728 - 1827","1729 - 1828","1730 - 1829","1731 - 1830","1732 - 1831","1733 - 1832","1734 - 1833","1735 - 1834","1736 - 1835","1737 - 1836","1738 - 1837","1739 - 1838","1740 - 1839","1741 - 1840","1742 - 1841","1743 - 1842","1744 - 1843","1745 - 1844","1746 - 1845","1747 - 1846","1748 - 1847","1749 - 1848","1750 - 1849","1751 - 1850","1752 - 1851","1753 - 1852","1754 - 1853","1755 - 1854","1756 - 1855","1757 - 1856","1758 - 1857","1759 - 1858","1800 - 1859","1801 - 1900","1802 - 1901","1803 - 1902","1804 - 1903","1805 - 1904","1806 - 1905","1807 - 1906","1808 - 1907","1809 - 1908","1810 - 1909","1811 - 1910","1812 - 1911","1813 - 1912","1814 - 1913","1815 - 1914","1816 - 1915","1817 - 1916","1818 - 1917","1819 - 1918","1820 - 1919","1821 - 1920","1822 - 1921","1823 - 1922","1824 - 1923","1825 - 1924","1826 - 1925","1827 - 1926","1828 - 1927","1829 - 1928","1830 - 1929","1831 - 1930","1832 - 1931","1833 - 1932","1834 - 1933","1835 - 1934","1836 - 1935","1837 - 1936","1838 - 1937","1839 - 1938","1840 - 1939","1841 - 1940","1842 - 1941","1843 - 1942","1844 - 1943","1845 - 1944","1846 - 1945","1847 - 1946","1848 - 1947","1849 - 1948","1850 - 1949","1851 - 1950","1852 - 1951","1853 - 1952","1854 - 1953","1855 - 1954","1856 - 1955","1857 - 1956","1858 - 1957","1859 - 1958","1900 - 1959","1901 - 2000","1902 - 2001","1903 - 2002","1904 - 2003","1905 - 2004","1906 - 2005","1907 - 2006","1908 - 2007","1909 - 2008","1910 - 2009","1911 - 2010","1912 - 2011","1913 - 2012","1914 - 2013","1915 - 2014","1916 - 2015","1917 - 2016","1918 - 2017","1919 - 2018","1920 - 2019","1921 - 2020","1922 - 2021","1923 - 2022","1924 - 2023","1925 - 2024","1926 - 2025","1927 - 2026","1928 - 2027","1929 - 2028","1930 - 2029","1931 - 2030","1932 - 2031","1933 - 2032","1934 - 2033","1935 - 2034","1936 - 2035","1937 - 2036","1938 - 2037","1939 - 2038","1940 - 2039","1941 - 2040","1942 - 2041","1943 - 2042","1944 - 2043","1945 - 2044","1946 - 2045","1947 - 2046","1948 - 2047","1949 - 2048","1950 - 2049","1951 - 2050","1952 - 2051","1953 - 2052","1954 - 2053","1955 - 2054","1956 - 2055","1957 - 2056","1958 - 2057","1959 - 2058","2000 - 2059","2001 - 2100","2002 - 2101","2003 - 2102","2004 - 2103","2005 - 2104","2006 - 2105","2007 - 2106","2008 - 2107","2009 - 2108","2010 - 2109","2011 - 2110","2012 - 2111","2013 - 2112","2014 - 2113","2015 - 2114","2016 - 2115","2017 - 2116","2018 - 2117","2019 - 2118","2020 - 2119","2021 - 2120","2022 - 2121","2023 - 2122","2024 - 2123","2025 - 2124","2026 - 2125","2027 - 2126","2028 - 2127","2029 - 2128","2030 - 2129","2031 - 2130","2032 - 2131","2033 - 2132","2034 - 2133","2035 - 2134","2036 - 2135","2037 - 2136","2038 - 2137","2039 - 2138","2040 - 2139","2041 - 2140","2042 - 2141","2043 - 2142","2044 - 2143","2045 - 2144","2046 - 2145","2047 - 2146","2048 - 2147","2049 - 2148","2050 - 2149","2051 - 2150","2052 - 2151","2053 - 2152","2054 - 2153","2055 - 2154","2056 - 2155","2057 - 2156","2058 - 2157","2059 - 2158","2100 - 2159","2101 - 2200","2102 - 2201","2103 - 2202","2104 - 2203","2105 - 2204","2106 - 2205","2107 - 2206","2108 - 2207","2109 - 2208","2110 - 2209","2111 - 2210","2112 - 2211","2113 - 2212","2114 - 2213","2115 - 2214","2116 - 2215","2117 - 2216","2118 - 2217","2119 - 2218","2120 - 2219","2121 - 2220","2122 - 2221","2123 - 2222","2124 - 2223","2125 - 2224","2126 - 2225","2127 - 2226","2128 - 2227","2129 - 2228","2130 - 2229","2131 - 2230","2132 - 2231","2133 - 2232","2134 - 2233","2135 - 2234","2136 - 2235","2137 - 2236","2138 - 2237","2139 - 2238","2140 - 2239","2141 - 2240","2142 - 2241","2143 - 2242","2144 - 2243","2145 - 2244","2146 - 2245","2147 - 2246","2148 - 2247","2149 - 2248","2150 - 2249","2151 - 2250","2152 - 2251","2153 - 2252","2154 - 2253","2155 - 2254","2156 - 2255","2157 - 2256","2158 - 2257","2159 - 2258","2200 - 2259","2201 - 2300","2202 - 2301","2203 - 2302","2204 - 2303","2205 - 2304","2206 - 2305","2207 - 2306","2208 - 2307","2209 - 2308","2210 - 2309","2211 - 2310","2212 - 2311","2213 - 2312","2214 - 2313","2215 - 2314","2216 - 2315","2217 - 2316","2218 - 2317","2219 - 2318","2220 - 2319","2221 - 2320","2222 - 2321","2223 - 2322","2224 - 2323","2225 - 2324","2226 - 2325","2227 - 2326","2228 - 2327","2229 - 2328","2230 - 2329","2231 - 2330","2232 - 2331","2233 - 2332","2234 - 2333","2235 - 2334","2236 - 2335","2237 - 2336","2238 - 2337","2239 - 2338","2240 - 2339","2241 - 2340","2242 - 2341","2243 - 2342","2244 - 2343","2245 - 2344","2246 - 2345","2247 - 2346","2248 - 2347","2249 - 2348","2250 - 2349","2251 - 2350","2252 - 2351","2253 - 2352","2254 - 2353","2255 - 2354","2256 - 2355","2257 - 2356","2258 - 2357","2259 - 2358","2300 - 2359","2301 - 0000","2302 - 0001","2303 - 0002","2304 - 0003","2305 - 0004","2306 - 0005","2307 - 0006","2308 - 0007","2309 - 0008","2310 - 0009","2311 - 0010","2312 - 0011","2313 - 0012","2314 - 0013","2315 - 0014","2316 - 0015","2317 - 0016","2318 - 0017","2319 - 0018","2320 - 0019","2321 - 0020","2322 - 0021","2323 - 0022","2324 - 0023","2325 - 0024","2326 - 0025","2327 - 0026","2328 - 0027","2329 - 0028","2330 - 0029","2331 - 0030","2332 - 0031","2333 - 0032","2334 - 0033","2335 - 0034","2336 - 0035","2337 - 0036","2338 - 0037","2339 - 0038","2340 - 0039","2341 - 0040","2342 - 0041","2343 - 0042","2344 - 0043","2345 - 0044","2346 - 0045","2347 - 0046","2348 - 0047","2349 - 0048","2350 - 0049","2351 - 0050","2352 - 0051","2353 - 0052","2354 - 0053","2355 - 0054","2356 - 0055","2357 - 0056","2358 - 0057","2359 - 0058"]
 
Interv2=["0000 - 0001","0001 - 0002","0002 - 0003","0003 - 0004","0004 - 0005","0005 - 0006","0006 - 0007","0007 - 0008","0008 - 0009","0009 - 0010","0010 - 0011","0011 - 0012","0012 - 0013","0013 - 0014","0014 - 0015","0015 - 0016","0016 - 0017","0017 - 0018","0018 - 0019","0019 - 0020","0020 - 0021","0021 - 0022","0022 - 0023","0023 - 0024","0024 - 0025","0025 - 0026","0026 - 0027","0027 - 0028","0028 - 0029","0029 - 0030","0030 - 0031","0031 - 0032","0032 - 0033","0033 - 0034","0034 - 0035","0035 - 0036","0036 - 0037","0037 - 0038","0038 - 0039","0039 - 0040","0040 - 0041","0041 - 0042","0042 - 0043","0043 - 0044","0044 - 0045","0045 - 0046","0046 - 0047","0047 - 0048","0048 - 0049","0049 - 0050","0050 - 0051","0051 - 0052","0052 - 0053","0053 - 0054","0054 - 0055","0055 - 0056","0056 - 0057","0057 - 0058","0058 - 0059","0059 - 0100","0100 - 0101","0101 - 0102","0102 - 0103","0103 - 0104","0104 - 0105","0105 - 0106","0106 - 0107","0107 - 0108","0108 - 0109","0109 - 0110","0110 - 0111","0111 - 0112","0112 - 0113","0113 - 0114","0114 - 0115","0115 - 0116","0116 - 0117","0117 - 0118","0118 - 0119","0119 - 0120","0120 - 0121","0121 - 0122","0122 - 0123","0123 - 0124","0124 - 0125","0125 - 0126","0126 - 0127","0127 - 0128","0128 - 0129","0129 - 0130","0130 - 0131","0131 - 0132","0132 - 0133","0133 - 0134","0134 - 0135","0135 - 0136","0136 - 0137","0137 - 0138","0138 - 0139","0139 - 0140","0140 - 0141","0141 - 0142","0142 - 0143","0143 - 0144","0144 - 0145","0145 - 0146","0146 - 0147","0147 - 0148","0148 - 0149","0149 - 0150","0150 - 0151","0151 - 0152","0152 - 0153","0153 - 0154","0154 - 0155","0155 - 0156","0156 - 0157","0157 - 0158","0158 - 0159","0159 - 0200","0200 - 0201","0201 - 0202","0202 - 0203","0203 - 0204","0204 - 0205","0205 - 0206","0206 - 0207","0207 - 0208","0208 - 0209","0209 - 0210","0210 - 0211","0211 - 0212","0212 - 0213","0213 - 0214","0214 - 0215","0215 - 0216","0216 - 0217","0217 - 0218","0218 - 0219","0219 - 0220","0220 - 0221","0221 - 0222","0222 - 0223","0223 - 0224","0224 - 0225","0225 - 0226","0226 - 0227","0227 - 0228","0228 - 0229","0229 - 0230","0230 - 0231","0231 - 0232","0232 - 0233","0233 - 0234","0234 - 0235","0235 - 0236","0236 - 0237","0237 - 0238","0238 - 0239","0239 - 0240","0240 - 0241","0241 - 0242","0242 - 0243","0243 - 0244","0244 - 0245","0245 - 0246","0246 - 0247","0247 - 0248","0248 - 0249","0249 - 0250","0250 - 0251","0251 - 0252","0252 - 0253","0253 - 0254","0254 - 0255","0255 - 0256","0256 - 0257","0257 - 0258","0258 - 0259","0259 - 0300","0300 - 0301","0301 - 0302","0302 - 0303","0303 - 0304","0304 - 0305","0305 - 0306","0306 - 0307","0307 - 0308","0308 - 0309","0309 - 0310","0310 - 0311","0311 - 0312","0312 - 0313","0313 - 0314","0314 - 0315","0315 - 0316","0316 - 0317","0317 - 0318","0318 - 0319","0319 - 0320","0320 - 0321","0321 - 0322","0322 - 0323","0323 - 0324","0324 - 0325","0325 - 0326","0326 - 0327","0327 - 0328","0328 - 0329","0329 - 0330","0330 - 0331","0331 - 0332","0332 - 0333","0333 - 0334","0334 - 0335","0335 - 0336","0336 - 0337","0337 - 0338","0338 - 0339","0339 - 0340","0340 - 0341","0341 - 0342","0342 - 0343","0343 - 0344","0344 - 0345","0345 - 0346","0346 - 0347","0347 - 0348","0348 - 0349","0349 - 0350","0350 - 0351","0351 - 0352","0352 - 0353","0353 - 0354","0354 - 0355","0355 - 0356","0356 - 0357","0357 - 0358","0358 - 0359","0359 - 0400","0400 - 0401","0401 - 0402","0402 - 0403","0403 - 0404","0404 - 0405","0405 - 0406","0406 - 0407","0407 - 0408","0408 - 0409","0409 - 0410","0410 - 0411","0411 - 0412","0412 - 0413","0413 - 0414","0414 - 0415","0415 - 0416","0416 - 0417","0417 - 0418","0418 - 0419","0419 - 0420","0420 - 0421","0421 - 0422","0422 - 0423","0423 - 0424","0424 - 0425","0425 - 0426","0426 - 0427","0427 - 0428","0428 - 0429","0429 - 0430","0430 - 0431","0431 - 0432","0432 - 0433","0433 - 0434","0434 - 0435","0435 - 0436","0436 - 0437","0437 - 0438","0438 - 0439","0439 - 0440","0440 - 0441","0441 - 0442","0442 - 0443","0443 - 0444","0444 - 0445","0445 - 0446","0446 - 0447","0447 - 0448","0448 - 0449","0449 - 0450","0450 - 0451","0451 - 0452","0452 - 0453","0453 - 0454","0454 - 0455","0455 - 0456","0456 - 0457","0457 - 0458","0458 - 0459","0459 - 0500","0500 - 0501","0501 - 0502","0502 - 0503","0503 - 0504","0504 - 0505","0505 - 0506","0506 - 0507","0507 - 0508","0508 - 0509","0509 - 0510","0510 - 0511","0511 - 0512","0512 - 0513","0513 - 0514","0514 - 0515","0515 - 0516","0516 - 0517","0517 - 0518","0518 - 0519","0519 - 0520","0520 - 0521","0521 - 0522","0522 - 0523","0523 - 0524","0524 - 0525","0525 - 0526","0526 - 0527","0527 - 0528","0528 - 0529","0529 - 0530","0530 - 0531","0531 - 0532","0532 - 0533","0533 - 0534","0534 - 0535","0535 - 0536","0536 - 0537","0537 - 0538","0538 - 0539","0539 - 0540","0540 - 0541","0541 - 0542","0542 - 0543","0543 - 0544","0544 - 0545","0545 - 0546","0546 - 0547","0547 - 0548","0548 - 0549","0549 - 0550","0550 - 0551","0551 - 0552","0552 - 0553","0553 - 0554","0554 - 0555","0555 - 0556","0556 - 0557","0557 - 0558","0558 - 0559","0559 - 0600","0600 - 0601","0601 - 0602","0602 - 0603","0603 - 0604","0604 - 0605","0605 - 0606","0606 - 0607","0607 - 0608","0608 - 0609","0609 - 0610","0610 - 0611","0611 - 0612","0612 - 0613","0613 - 0614","0614 - 0615","0615 - 0616","0616 - 0617","0617 - 0618","0618 - 0619","0619 - 0620","0620 - 0621","0621 - 0622","0622 - 0623","0623 - 0624","0624 - 0625","0625 - 0626","0626 - 0627","0627 - 0628","0628 - 0629","0629 - 0630","0630 - 0631","0631 - 0632","0632 - 0633","0633 - 0634","0634 - 0635","0635 - 0636","0636 - 0637","0637 - 0638","0638 - 0639","0639 - 0640","0640 - 0641","0641 - 0642","0642 - 0643","0643 - 0644","0644 - 0645","0645 - 0646","0646 - 0647","0647 - 0648","0648 - 0649","0649 - 0650","0650 - 0651","0651 - 0652","0652 - 0653","0653 - 0654","0654 - 0655","0655 - 0656","0656 - 0657","0657 - 0658","0658 - 0659","0659 - 0700","0700 - 0701","0701 - 0702","0702 - 0703","0703 - 0704","0704 - 0705","0705 - 0706","0706 - 0707","0707 - 0708","0708 - 0709","0709 - 0710","0710 - 0711","0711 - 0712","0712 - 0713","0713 - 0714","0714 - 0715","0715 - 0716","0716 - 0717","0717 - 0718","0718 - 0719","0719 - 0720","0720 - 0721","0721 - 0722","0722 - 0723","0723 - 0724","0724 - 0725","0725 - 0726","0726 - 0727","0727 - 0728","0728 - 0729","0729 - 0730","0730 - 0731","0731 - 0732","0732 - 0733","0733 - 0734","0734 - 0735","0735 - 0736","0736 - 0737","0737 - 0738","0738 - 0739","0739 - 0740","0740 - 0741","0741 - 0742","0742 - 0743","0743 - 0744","0744 - 0745","0745 - 0746","0746 - 0747","0747 - 0748","0748 - 0749","0749 - 0750","0750 - 0751","0751 - 0752","0752 - 0753","0753 - 0754","0754 - 0755","0755 - 0756","0756 - 0757","0757 - 0758","0758 - 0759","0759 - 0800","0800 - 0801","0801 - 0802","0802 - 0803","0803 - 0804","0804 - 0805","0805 - 0806","0806 - 0807","0807 - 0808","0808 - 0809","0809 - 0810","0810 - 0811","0811 - 0812","0812 - 0813","0813 - 0814","0814 - 0815","0815 - 0816","0816 - 0817","0817 - 0818","0818 - 0819","0819 - 0820","0820 - 0821","0821 - 0822","0822 - 0823","0823 - 0824","0824 - 0825","0825 - 0826","0826 - 0827","0827 - 0828","0828 - 0829","0829 - 0830","0830 - 0831","0831 - 0832","0832 - 0833","0833 - 0834","0834 - 0835","0835 - 0836","0836 - 0837","0837 - 0838","0838 - 0839","0839 - 0840","0840 - 0841","0841 - 0842","0842 - 0843","0843 - 0844","0844 - 0845","0845 - 0846","0846 - 0847","0847 - 0848","0848 - 0849","0849 - 0850","0850 - 0851","0851 - 0852","0852 - 0853","0853 - 0854","0854 - 0855","0855 - 0856","0856 - 0857","0857 - 0858","0858 - 0859","0859 - 0900","0900 - 0901","0901 - 0902","0902 - 0903","0903 - 0904","0904 - 0905","0905 - 0906","0906 - 0907","0907 - 0908","0908 - 0909","0909 - 0910","0910 - 0911","0911 - 0912","0912 - 0913","0913 - 0914","0914 - 0915","0915 - 0916","0916 - 0917","0917 - 0918","0918 - 0919","0919 - 0920","0920 - 0921","0921 - 0922","0922 - 0923","0923 - 0924","0924 - 0925","0925 - 0926","0926 - 0927","0927 - 0928","0928 - 0929","0929 - 0930","0930 - 0931","0931 - 0932","0932 - 0933","0933 - 0934","0934 - 0935","0935 - 0936","0936 - 0937","0937 - 0938","0938 - 0939","0939 - 0940","0940 - 0941","0941 - 0942","0942 - 0943","0943 - 0944","0944 - 0945","0945 - 0946","0946 - 0947","0947 - 0948","0948 - 0949","0949 - 0950","0950 - 0951","0951 - 0952","0952 - 0953","0953 - 0954","0954 - 0955","0955 - 0956","0956 - 0957","0957 - 0958","0958 - 0959","0959 - 1000","1000 - 1001","1001 - 1002","1002 - 1003","1003 - 1004","1004 - 1005","1005 - 1006","1006 - 1007","1007 - 1008","1008 - 1009","1009 - 1010","1010 - 1011","1011 - 1012","1012 - 1013","1013 - 1014","1014 - 1015","1015 - 1016","1016 - 1017","1017 - 1018","1018 - 1019","1019 - 1020","1020 - 1021","1021 - 1022","1022 - 1023","1023 - 1024","1024 - 1025","1025 - 1026","1026 - 1027","1027 - 1028","1028 - 1029","1029 - 1030","1030 - 1031","1031 - 1032","1032 - 1033","1033 - 1034","1034 - 1035","1035 - 1036","1036 - 1037","1037 - 1038","1038 - 1039","1039 - 1040","1040 - 1041","1041 - 1042","1042 - 1043","1043 - 1044","1044 - 1045","1045 - 1046","1046 - 1047","1047 - 1048","1048 - 1049","1049 - 1050","1050 - 1051","1051 - 1052","1052 - 1053","1053 - 1054","1054 - 1055","1055 - 1056","1056 - 1057","1057 - 1058","1058 - 1059","1059 - 1100","1100 - 1101","1101 - 1102","1102 - 1103","1103 - 1104","1104 - 1105","1105 - 1106","1106 - 1107","1107 - 1108","1108 - 1109","1109 - 1110","1110 - 1111","1111 - 1112","1112 - 1113","1113 - 1114","1114 - 1115","1115 - 1116","1116 - 1117","1117 - 1118","1118 - 1119","1119 - 1120","1120 - 1121","1121 - 1122","1122 - 1123","1123 - 1124","1124 - 1125","1125 - 1126","1126 - 1127","1127 - 1128","1128 - 1129","1129 - 1130","1130 - 1131","1131 - 1132","1132 - 1133","1133 - 1134","1134 - 1135","1135 - 1136","1136 - 1137","1137 - 1138","1138 - 1139","1139 - 1140","1140 - 1141","1141 - 1142","1142 - 1143","1143 - 1144","1144 - 1145","1145 - 1146","1146 - 1147","1147 - 1148","1148 - 1149","1149 - 1150","1150 - 1151","1151 - 1152","1152 - 1153","1153 - 1154","1154 - 1155","1155 - 1156","1156 - 1157","1157 - 1158","1158 - 1159","1159 - 1200","1200 - 1201","1201 - 1202","1202 - 1203","1203 - 1204","1204 - 1205","1205 - 1206","1206 - 1207","1207 - 1208","1208 - 1209","1209 - 1210","1210 - 1211","1211 - 1212","1212 - 1213","1213 - 1214","1214 - 1215","1215 - 1216","1216 - 1217","1217 - 1218","1218 - 1219","1219 - 1220","1220 - 1221","1221 - 1222","1222 - 1223","1223 - 1224","1224 - 1225","1225 - 1226","1226 - 1227","1227 - 1228","1228 - 1229","1229 - 1230","1230 - 1231","1231 - 1232","1232 - 1233","1233 - 1234","1234 - 1235","1235 - 1236","1236 - 1237","1237 - 1238","1238 - 1239","1239 - 1240","1240 - 1241","1241 - 1242","1242 - 1243","1243 - 1244","1244 - 1245","1245 - 1246","1246 - 1247","1247 - 1248","1248 - 1249","1249 - 1250","1250 - 1251","1251 - 1252","1252 - 1253","1253 - 1254","1254 - 1255","1255 - 1256","1256 - 1257","1257 - 1258","1258 - 1259","1259 - 1300","1300 - 1301","1301 - 1302","1302 - 1303","1303 - 1304","1304 - 1305","1305 - 1306","1306 - 1307","1307 - 1308","1308 - 1309","1309 - 1310","1310 - 1311","1311 - 1312","1312 - 1313","1313 - 1314","1314 - 1315","1315 - 1316","1316 - 1317","1317 - 1318","1318 - 1319","1319 - 1320","1320 - 1321","1321 - 1322","1322 - 1323","1323 - 1324","1324 - 1325","1325 - 1326","1326 - 1327","1327 - 1328","1328 - 1329","1329 - 1330","1330 - 1331","1331 - 1332","1332 - 1333","1333 - 1334","1334 - 1335","1335 - 1336","1336 - 1337","1337 - 1338","1338 - 1339","1339 - 1340","1340 - 1341","1341 - 1342","1342 - 1343","1343 - 1344","1344 - 1345","1345 - 1346","1346 - 1347","1347 - 1348","1348 - 1349","1349 - 1350","1350 - 1351","1351 - 1352","1352 - 1353","1353 - 1354","1354 - 1355","1355 - 1356","1356 - 1357","1357 - 1358","1358 - 1359","1359 - 1400","1400 - 1401","1401 - 1402","1402 - 1403","1403 - 1404","1404 - 1405","1405 - 1406","1406 - 1407","1407 - 1408","1408 - 1409","1409 - 1410","1410 - 1411","1411 - 1412","1412 - 1413","1413 - 1414","1414 - 1415","1415 - 1416","1416 - 1417","1417 - 1418","1418 - 1419","1419 - 1420","1420 - 1421","1421 - 1422","1422 - 1423","1423 - 1424","1424 - 1425","1425 - 1426","1426 - 1427","1427 - 1428","1428 - 1429","1429 - 1430","1430 - 1431","1431 - 1432","1432 - 1433","1433 - 1434","1434 - 1435","1435 - 1436","1436 - 1437","1437 - 1438","1438 - 1439","1439 - 1440","1440 - 1441","1441 - 1442","1442 - 1443","1443 - 1444","1444 - 1445","1445 - 1446","1446 - 1447","1447 - 1448","1448 - 1449","1449 - 1450","1450 - 1451","1451 - 1452","1452 - 1453","1453 - 1454","1454 - 1455","1455 - 1456","1456 - 1457","1457 - 1458","1458 - 1459","1459 - 1500","1500 - 1501","1501 - 1502","1502 - 1503","1503 - 1504","1504 - 1505","1505 - 1506","1506 - 1507","1507 - 1508","1508 - 1509","1509 - 1510","1510 - 1511","1511 - 1512","1512 - 1513","1513 - 1514","1514 - 1515","1515 - 1516","1516 - 1517","1517 - 1518","1518 - 1519","1519 - 1520","1520 - 1521","1521 - 1522","1522 - 1523","1523 - 1524","1524 - 1525","1525 - 1526","1526 - 1527","1527 - 1528","1528 - 1529","1529 - 1530","1530 - 1531","1531 - 1532","1532 - 1533","1533 - 1534","1534 - 1535","1535 - 1536","1536 - 1537","1537 - 1538","1538 - 1539","1539 - 1540","1540 - 1541","1541 - 1542","1542 - 1543","1543 - 1544","1544 - 1545","1545 - 1546","1546 - 1547","1547 - 1548","1548 - 1549","1549 - 1550","1550 - 1551","1551 - 1552","1552 - 1553","1553 - 1554","1554 - 1555","1555 - 1556","1556 - 1557","1557 - 1558","1558 - 1559","1559 - 1600","1600 - 1601","1601 - 1602","1602 - 1603","1603 - 1604","1604 - 1605","1605 - 1606","1606 - 1607","1607 - 1608","1608 - 1609","1609 - 1610","1610 - 1611","1611 - 1612","1612 - 1613","1613 - 1614","1614 - 1615","1615 - 1616","1616 - 1617","1617 - 1618","1618 - 1619","1619 - 1620","1620 - 1621","1621 - 1622","1622 - 1623","1623 - 1624","1624 - 1625","1625 - 1626","1626 - 1627","1627 - 1628","1628 - 1629","1629 - 1630","1630 - 1631","1631 - 1632","1632 - 1633","1633 - 1634","1634 - 1635","1635 - 1636","1636 - 1637","1637 - 1638","1638 - 1639","1639 - 1640","1640 - 1641","1641 - 1642","1642 - 1643","1643 - 1644","1644 - 1645","1645 - 1646","1646 - 1647","1647 - 1648","1648 - 1649","1649 - 1650","1650 - 1651","1651 - 1652","1652 - 1653","1653 - 1654","1654 - 1655","1655 - 1656","1656 - 1657","1657 - 1658","1658 - 1659","1659 - 1700","1700 - 1701","1701 - 1702","1702 - 1703","1703 - 1704","1704 - 1705","1705 - 1706","1706 - 1707","1707 - 1708","1708 - 1709","1709 - 1710","1710 - 1711","1711 - 1712","1712 - 1713","1713 - 1714","1714 - 1715","1715 - 1716","1716 - 1717","1717 - 1718","1718 - 1719","1719 - 1720","1720 - 1721","1721 - 1722","1722 - 1723","1723 - 1724","1724 - 1725","1725 - 1726","1726 - 1727","1727 - 1728","1728 - 1729","1729 - 1730","1730 - 1731","1731 - 1732","1732 - 1733","1733 - 1734","1734 - 1735","1735 - 1736","1736 - 1737","1737 - 1738","1738 - 1739","1739 - 1740","1740 - 1741","1741 - 1742","1742 - 1743","1743 - 1744","1744 - 1745","1745 - 1746","1746 - 1747","1747 - 1748","1748 - 1749","1749 - 1750","1750 - 1751","1751 - 1752","1752 - 1753","1753 - 1754","1754 - 1755","1755 - 1756","1756 - 1757","1757 - 1758","1758 - 1759","1759 - 1800","1800 - 1801","1801 - 1802","1802 - 1803","1803 - 1804","1804 - 1805","1805 - 1806","1806 - 1807","1807 - 1808","1808 - 1809","1809 - 1810","1810 - 1811","1811 - 1812","1812 - 1813","1813 - 1814","1814 - 1815","1815 - 1816","1816 - 1817","1817 - 1818","1818 - 1819","1819 - 1820","1820 - 1821","1821 - 1822","1822 - 1823","1823 - 1824","1824 - 1825","1825 - 1826","1826 - 1827","1827 - 1828","1828 - 1829","1829 - 1830","1830 - 1831","1831 - 1832","1832 - 1833","1833 - 1834","1834 - 1835","1835 - 1836","1836 - 1837","1837 - 1838","1838 - 1839","1839 - 1840","1840 - 1841","1841 - 1842","1842 - 1843","1843 - 1844","1844 - 1845","1845 - 1846","1846 - 1847","1847 - 1848","1848 - 1849","1849 - 1850","1850 - 1851","1851 - 1852","1852 - 1853","1853 - 1854","1854 - 1855","1855 - 1856","1856 - 1857","1857 - 1858","1858 - 1859","1859 - 1900","1900 - 1901","1901 - 1902","1902 - 1903","1903 - 1904","1904 - 1905","1905 - 1906","1906 - 1907","1907 - 1908","1908 - 1909","1909 - 1910","1910 - 1911","1911 - 1912","1912 - 1913","1913 - 1914","1914 - 1915","1915 - 1916","1916 - 1917","1917 - 1918","1918 - 1919","1919 - 1920","1920 - 1921","1921 - 1922","1922 - 1923","1923 - 1924","1924 - 1925","1925 - 1926","1926 - 1927","1927 - 1928","1928 - 1929","1929 - 1930","1930 - 1931","1931 - 1932","1932 - 1933","1933 - 1934","1934 - 1935","1935 - 1936","1936 - 1937","1937 - 1938","1938 - 1939","1939 - 1940","1940 - 1941","1941 - 1942","1942 - 1943","1943 - 1944","1944 - 1945","1945 - 1946","1946 - 1947","1947 - 1948","1948 - 1949","1949 - 1950","1950 - 1951","1951 - 1952","1952 - 1953","1953 - 1954","1954 - 1955","1955 - 1956","1956 - 1957","1957 - 1958","1958 - 1959","1959 - 2000","2000 - 2001","2001 - 2002","2002 - 2003","2003 - 2004","2004 - 2005","2005 - 2006","2006 - 2007","2007 - 2008","2008 - 2009","2009 - 2010","2010 - 2011","2011 - 2012","2012 - 2013","2013 - 2014","2014 - 2015","2015 - 2016","2016 - 2017","2017 - 2018","2018 - 2019","2019 - 2020","2020 - 2021","2021 - 2022","2022 - 2023","2023 - 2024","2024 - 2025","2025 - 2026","2026 - 2027","2027 - 2028","2028 - 2029","2029 - 2030","2030 - 2031","2031 - 2032","2032 - 2033","2033 - 2034","2034 - 2035","2035 - 2036","2036 - 2037","2037 - 2038","2038 - 2039","2039 - 2040","2040 - 2041","2041 - 2042","2042 - 2043","2043 - 2044","2044 - 2045","2045 - 2046","2046 - 2047","2047 - 2048","2048 - 2049","2049 - 2050","2050 - 2051","2051 - 2052","2052 - 2053","2053 - 2054","2054 - 2055","2055 - 2056","2056 - 2057","2057 - 2058","2058 - 2059","2059 - 2100","2100 - 2101","2101 - 2102","2102 - 2103","2103 - 2104","2104 - 2105","2105 - 2106","2106 - 2107","2107 - 2108","2108 - 2109","2109 - 2110","2110 - 2111","2111 - 2112","2112 - 2113","2113 - 2114","2114 - 2115","2115 - 2116","2116 - 2117","2117 - 2118","2118 - 2119","2119 - 2120","2120 - 2121","2121 - 2122","2122 - 2123","2123 - 2124","2124 - 2125","2125 - 2126","2126 - 2127","2127 - 2128","2128 - 2129","2129 - 2130","2130 - 2131","2131 - 2132","2132 - 2133","2133 - 2134","2134 - 2135","2135 - 2136","2136 - 2137","2137 - 2138","2138 - 2139","2139 - 2140","2140 - 2141","2141 - 2142","2142 - 2143","2143 - 2144","2144 - 2145","2145 - 2146","2146 - 2147","2147 - 2148","2148 - 2149","2149 - 2150","2150 - 2151","2151 - 2152","2152 - 2153","2153 - 2154","2154 - 2155","2155 - 2156","2156 - 2157","2157 - 2158","2158 - 2159","2159 - 2200","2200 - 2201","2201 - 2202","2202 - 2203","2203 - 2204","2204 - 2205","2205 - 2206","2206 - 2207","2207 - 2208","2208 - 2209","2209 - 2210","2210 - 2211","2211 - 2212","2212 - 2213","2213 - 2214","2214 - 2215","2215 - 2216","2216 - 2217","2217 - 2218","2218 - 2219","2219 - 2220","2220 - 2221","2221 - 2222","2222 - 2223","2223 - 2224","2224 - 2225","2225 - 2226","2226 - 2227","2227 - 2228","2228 - 2229","2229 - 2230","2230 - 2231","2231 - 2232","2232 - 2233","2233 - 2234","2234 - 2235","2235 - 2236","2236 - 2237","2237 - 2238","2238 - 2239","2239 - 2240","2240 - 2241","2241 - 2242","2242 - 2243","2243 - 2244","2244 - 2245","2245 - 2246","2246 - 2247","2247 - 2248","2248 - 2249","2249 - 2250","2250 - 2251","2251 - 2252","2252 - 2253","2253 - 2254","2254 - 2255","2255 - 2256","2256 - 2257","2257 - 2258","2258 - 2259","2259 - 2300","2300 - 2301","2301 - 2302","2302 - 2303","2303 - 2304","2304 - 2305","2305 - 2306","2306 - 2307","2307 - 2308","2308 - 2309","2309 - 2310","2310 - 2311","2311 - 2312","2312 - 2313","2313 - 2314","2314 - 2315","2315 - 2316","2316 - 2317","2317 - 2318","2318 - 2319","2319 - 2320","2320 - 2321","2321 - 2322","2322 - 2323","2323 - 2324","2324 - 2325","2325 - 2326","2326 - 2327","2327 - 2328","2328 - 2329","2329 - 2330","2330 - 2331","2331 - 2332","2332 - 2333","2333 - 2334","2334 - 2335","2335 - 2336","2336 - 2337","2337 - 2338","2338 - 2339","2339 - 2340","2340 - 2341","2341 - 2342","2342 - 2343","2343 - 2344","2344 - 2345","2345 - 2346","2346 - 2347","2347 - 2348","2348 - 2349","2349 - 2350","2350 - 2351","2351 - 2352","2352 - 2353","2353 - 2354","2354 - 2355","2355 - 2356","2356 - 2357","2357 - 2358","2358 - 2359","2359 - 2359"]
Donc actuelement, l'interval horaire change à chaque fois qu'on change de tranche horaire sur l'axe des X, mais il faudrait que ça change à chaque fois que la souris se déplace, donc de minute en minutes, d'où Interv2, mais la tooltip ne se met pas à jour comme je le voudrai.


Voila, j'espère quie je vous aurai donné assez d'info pour que vous puissiez m'aider.

Merci d'avance.