Changeset 19884
- Timestamp:
- 12/12/15 16:39:32 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/plot/applyoptions.js
r19872 r19884 177 177 ccanvashtml = document.getElementById(ccanvasid); 178 178 if (ccanvashtml==null) { 179 ccanvas = $('<canvas id="'+ccanvasid+'" width="'+String(cwidth+cheightoffset*4)+'" height="'+String(cheight+cheightoffset )+'"></canvas>').insertAfter('#'+options.getfieldvalue('canvasid'));179 ccanvas = $('<canvas id="'+ccanvasid+'" width="'+String(cwidth+cheightoffset*4)+'" height="'+String(cheight+cheightoffset*2)+'"></canvas>').insertAfter('#'+options.getfieldvalue('canvasid')); 180 180 ccanvas.css({'position':'relative','top':((canvassize-cheight-cheightoffset)/-2).toFixed(2)+'px'}); 181 181 ccontext = ccanvas[0].getContext('2d'); … … 189 189 //get html object instead of jqurey object to modify height/width to accomodate labels 190 190 ccanvashtml.width = ccanvas.width()+cheightoffset*6; 191 ccanvashtml.height = cheight+cheightoffset ;191 ccanvashtml.height = cheight+cheightoffset*2; 192 192 ccanvashtml.cwidth = cwidth; 193 193 ccanvashtml.cheight = cheight; … … 200 200 ccontext = ccanvas[0].getContext('2d'); 201 201 /*erase existing colorbar:*/ 202 ccontext.clearRect(0,0, c width*4, cheight+cheightoffset);202 ccontext.clearRect(0,0, ccanvashtml.width, ccanvashtml.height); 203 203 ccontext.beginPath(); 204 204 } … … 213 213 } 214 214 ccontext.fillStyle=cgradient; 215 ccontext.fillRect(0,cheightoffset /2,cwidth,cheight);215 ccontext.fillRect(0,cheightoffset*3/2,cwidth,cheight); 216 216 217 217 //Draw colorbar border … … 219 219 ccontext.lineWidth='1'; 220 220 ccontext.strokeStyle='black'; 221 ccontext.rect(0,cheightoffset /2,cwidth,cheight);221 ccontext.rect(0,cheightoffset*3/2,cwidth,cheight); 222 222 ccontext.stroke(); 223 223 … … 226 226 x = 0.2*cwidth; 227 227 ccontext.beginPath(); 228 ccontext.moveTo(0,y );229 ccontext.lineTo(x,y );230 ccontext.moveTo(cwidth-x,y );231 ccontext.lineTo(cwidth,y );228 ccontext.moveTo(0,y+cheightoffset); 229 ccontext.lineTo(x,y+cheightoffset); 230 ccontext.moveTo(cwidth-x,y+cheightoffset); 231 ccontext.lineTo(cwidth,y+cheightoffset); 232 232 ccontext.stroke(); 233 233 ccontext.font=String(options.getfieldvalue('colorbarfontsize',16))+'px Arial'; 234 234 ccontext.fillStyle='black'; 235 235 ccontext.textAlign='left'; 236 ccontext.fillText(labels[i],cwidth+x,y+cheightoffset/2); 236 ccontext.fillText(labels[i],cwidth+x,y+cheightoffset*3/2); 237 } 238 if (options.exist('colorbartitle')) { 239 ccontext.font=String(options.getfieldvalue('colorbarfontsize',16))+'px Arial'; 240 ccontext.fillStyle='black'; 241 ccontext.textAlign='left'; 242 ccontext.textBaseline='bottom'; 243 ccontext.fillText(options.getfieldvalue('colorbartitle'),0,cheightoffset); 237 244 } 238 245 } … … 243 250 ccanvashtml = document.getElementById(ccanvasid); 244 251 if (ccanvashtml==null) { 245 ccanvas = $('<canvas id="'+ccanvasid+'" width="'+String(cwidth+cheightoffset*4)+'" height="'+String(cheight+cheightoffset )+'"></canvas>').insertAfter('#'+options.getfieldvalue('canvasid'));246 ccanvas.css({'position':'relative','top':((canvassize-cheight-cheightoffset )/-2).toFixed(2)+'px'});252 ccanvas = $('<canvas id="'+ccanvasid+'" width="'+String(cwidth+cheightoffset*4)+'" height="'+String(cheight+cheightoffset*2)+'"></canvas>').insertAfter('#'+options.getfieldvalue('canvasid')); 253 ccanvas.css({'position':'relative','top':((canvassize-cheight-cheightoffset*2)/-2).toFixed(2)+'px'}); 247 254 ccontext = ccanvas[0].getContext('2d'); 248 255 } … … 255 262 //get html object instead of jqurey object to modify height/width to accomodate labels 256 263 ccanvashtml.width = cwidth+cheightoffset*6; 257 ccanvashtml.height = cheight+cheightoffset ;264 ccanvashtml.height = cheight+cheightoffset*2; 258 265 ccanvashtml.cwidth = cwidth; 259 266 ccanvashtml.cheight = cheight; … … 266 273 ccontext = ccanvas[0].getContext('2d'); 267 274 /*erase existing colorbar:*/ 268 ccontext.clearRect(0,0, c width*4, cheight+cheightoffset);275 ccontext.clearRect(0,0, ccanvashtml.width, ccanvashtml.height); 269 276 ccontext.beginPath(); 270 277 } … … 279 286 } 280 287 ccontext.fillStyle=cgradient; 281 ccontext.fillRect(cwidthoffset, 0,cwidth,cheight);288 ccontext.fillRect(cwidthoffset,cheightoffset,cwidth,cheight); 282 289 283 290 //Draw colorbar border … … 285 292 ccontext.lineWidth='1'; 286 293 ccontext.strokeStyle='black'; 287 ccontext.rect(cwidthoffset, 0,cwidth,cheight);294 ccontext.rect(cwidthoffset,cheightoffset,cwidth,cheight); 288 295 ccontext.stroke(); 289 296 … … 292 299 x = i/cdivisions*cwidth; 293 300 ccontext.beginPath(); 294 ccontext.moveTo(x+cwidthoffset, 0);295 ccontext.lineTo(x+cwidthoffset,y );296 ccontext.moveTo(x+cwidthoffset,cheight-y );297 ccontext.lineTo(x+cwidthoffset,cheight );301 ccontext.moveTo(x+cwidthoffset,cheightoffset); 302 ccontext.lineTo(x+cwidthoffset,y+cheightoffset); 303 ccontext.moveTo(x+cwidthoffset,cheight-y+cheightoffset); 304 ccontext.lineTo(x+cwidthoffset,cheight+cheightoffset); 298 305 ccontext.stroke(); 299 306 ccontext.font=String(options.getfieldvalue('colorbarfontsize',16))+'px Arial'; 300 307 ccontext.fillStyle='black'; 301 308 ccontext.textAlign='center'; 302 ccontext.fillText(labels[cdivisions-i],x+cwidthoffset,cheight+cheightoffset); 309 ccontext.fillText(labels[cdivisions-i],x+cwidthoffset,cheight+cheightoffset*2); 310 } 311 if (options.exist('colorbartitle')) { 312 ccontext.font=String(options.getfieldvalue('colorbarfontsize',16))+'px Arial'; 313 ccontext.fillStyle='black'; 314 ccontext.textAlign='center'; 315 ccontext.textBaseline='bottom'; 316 ccontext.fillText(options.getfieldvalue('colorbartitle'),cwidth/2+cwidthoffset,cheightoffset); 303 317 } 304 318 }
Note:
See TracChangeset
for help on using the changeset viewer.