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
| function initGraph(response) {
console.log("initGraph1 :\t" + response);
if (response) {
data = response.data;
units = response.units;
//console.log("initGraph2 data :\t" + data + "\t\tUnits" + units);
if ("logic" == response.result_type) {
/** @type {boolean} */
steps = true;
/** @type {boolean} */
showlist = false;
console.log("initGraph3 steps :\t" + steps + "\tshowlist\t" + showlist);
} else {
/** @type {boolean} */
steps = false;
/** @type {boolean} */
showlist = false;
console.log("initGraph4 else steps :\t" + steps + "\tshowlist\t" + showlist);
}
} else {
/** @type {!Array} */
var data = [];
/** @type {string} */
var units = "";
/** @type {boolean} */
var steps = false;
/** @type {boolean} */
var showlist = false;
console.log("initGraph5 else steps :\t" + steps + "\tshowlist\t" + showlist);
}
var options = {
xaxis: {
mode: "time",
zoomRange: [3E4, 2592E6]
},
yaxis: {
tickFormatter: function (n) {
/** @type {string} */
var currElevationTxt = "";
return response && (currElevationTxt = Math.round(100 * n) / 100 + " " + units), currElevationTxt;
},
zoomRange: [0, 0],
panRange: false
},
selection: {
mode: "x"
},
crosshair: {
mode: "x"
},
lines: {
show: true,
lineWidth: 1,
fill: true,
fillColor: "rgba(43,130,212,0.3)",
steps: steps
},
series: {
lines: {
show: true
},
points: {
show: showlist,
radius: 1
}
},
colors: ["#2b82d4"],
grid: {
hoverable: true,
autoHighlight: true,
clickable: true
},
zoom: {
animate: true,
trigger: "dblclick",
amount: 3
},
pan: {
interactive: false,
animate: true
}
};
console.log("initGraph6 options :\t" + options);
if($("#bottom_panel_graph_plot")){
console.log("initGraph6 historyGraphPlot0 :\t" + $("#bottom_panel_graph_plot"));
historyGraphPlot = $.plot($("#bottom_panel_graph_plot"), [data], options);
console.log("initGraph6 historyGraphPlot1 :\t" + historyGraphPlot);
}else {
console.log("initGraph6 historyGraphPlot1 l'id n'existe pas:\t" );
}
console.log("initGraph7 :\t");
$("#bottom_panel_graph_plot").unbind("plothover");
} |
Partager