RGraph.common.deprecated.js
13.7 KB
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
// version: 2014-08-16
/**
* o--------------------------------------------------------------------------------o
* | This file is part of the RGraph package - you can learn more at: |
* | |
* | http://www.rgraph.net |
* | |
* | This package is licensed under the Creative Commons BY-NC license. That means |
* | that for non-commercial purposes it's free to use and for business use there's |
* | a 99 GBP per-company fee to pay. You can read the full license here: |
* | |
* | http://www.rgraph.net/license |
* o--------------------------------------------------------------------------------o
*/
RGraph = window.RGraph || {isRGraph: true};
// Module pattern
(function (win, doc, undefined)
{
var RG = RGraph,
ua = navigator.userAgent,
ma = Math;
/**
* This is a useful function which is basically a shortcut for drawing left, right, top and bottom alligned text.
*
* @param object context The context
* @param string font The font
* @param int size The size of the text
* @param int x The X coordinate
* @param int y The Y coordinate
* @param string text The text to draw
* @parm string The vertical alignment. Can be null. "center" gives center aligned text, "top" gives top aligned text.
* Anything else produces bottom aligned text. Default is bottom.
* @param string The horizontal alignment. Can be null. "center" gives center aligned text, "right" gives right aligned text.
* Anything else produces left aligned text. Default is left.
* @param bool Whether to show a bounding box around the text. Defaults not to
* @param int The angle that the text should be rotate at (IN DEGREES)
* @param string Background color for the text
* @param bool Whether the text is bold or not
*/
RG.text =
RG.Text = function (context, font, size, x, y, text)
{
// "Cache" the args as a local variable
var args = arguments;
// Handle undefined - change it to an empty string
if ((typeof(text) != 'string' && typeof(text) != 'number') || text == 'undefined') {
return;
}
/**
* This accommodates multi-line text
*/
if (typeof(text) == 'string' && text.match(/\r\n/)) {
var dimensions = RGraph.MeasureText('M', args[11], font, size);
/**
* Measure the text (width and height)
*/
var arr = text.split('\r\n');
/**
* Adjust the Y position
*/
// This adjusts the initial y position
if (args[6] && args[6] == 'center') y = (y - (dimensions[1] * ((arr.length - 1) / 2)));
for (var i=1; i<arr.length; ++i) {
RGraph.Text(context,
font,
size,
args[9] == -90 ? (x + (size * 1.5)) : x,
y + (dimensions[1] * i),
arr[i],
args[6] ? args[6] : null,
args[7],
args[8],
args[9],
args[10],
args[11],
args[12]);
}
// Update text to just be the first line
text = arr[0];
}
// Accommodate MSIE
if (document.all && RGraph.ISOLD) {
y += 2;
}
context.font = (args[11] ? 'Bold ': '') + size + 'pt ' + font;
var i;
var origX = x;
var origY = y;
var originalFillStyle = context.fillStyle;
var originalLineWidth = context.lineWidth;
// Need these now the angle can be specified, ie defaults for the former two args
if (typeof(args[6]) == 'undefined') args[6] = 'bottom'; // Vertical alignment. Default to bottom/baseline
if (typeof(args[7]) == 'undefined') args[7] = 'left'; // Horizontal alignment. Default to left
if (typeof(args[8]) == 'undefined') args[8] = null; // Show a bounding box. Useful for positioning during development. Defaults to false
if (typeof(args[9]) == 'undefined') args[9] = 0; // Angle (IN DEGREES) that the text should be drawn at. 0 is middle right, and it goes clockwise
// The alignment is recorded here for purposes of Opera compatibility
if (navigator.userAgent.indexOf('Opera') != -1) {
context.canvas.__rgraph_valign__ = args[6];
context.canvas.__rgraph_halign__ = args[7];
}
// First, translate to x/y coords
context.save();
context.canvas.__rgraph_originalx__ = x;
context.canvas.__rgraph_originaly__ = y;
context.translate(x, y);
x = 0;
y = 0;
// Rotate the canvas if need be
if (args[9]) {
context.rotate(args[9] / (180 / RGraph.PI));
}
// Vertical alignment - defaults to bottom
if (args[6]) {
var vAlign = args[6];
if (vAlign == 'center') {
context.textBaseline = 'middle';
} else if (vAlign == 'top') {
context.textBaseline = 'top';
}
}
// Hoeizontal alignment - defaults to left
if (args[7]) {
var hAlign = args[7];
var width = context.measureText(text).width;
if (hAlign) {
if (hAlign == 'center') {
context.textAlign = 'center';
} else if (hAlign == 'right') {
context.textAlign = 'right';
}
}
}
context.fillStyle = originalFillStyle;
/**
* Draw a bounding box if requested
*/
context.save();
context.fillText(text,0,0);
context.lineWidth = 1;
var width = context.measureText(text).width;
var width_offset = (hAlign == 'center' ? (width / 2) : (hAlign == 'right' ? width : 0));
var height = size * 1.5; // !!!
var height_offset = (vAlign == 'center' ? (height / 2) : (vAlign == 'top' ? height : 0));
var ieOffset = RGraph.ISOLD ? 2 : 0;
if (args[8]) {
context.strokeRect(-3 - width_offset,
0 - 3 - height - ieOffset + height_offset,
width + 6,
height + 6);
/**
* If requested, draw a background for the text
*/
if (args[10]) {
context.fillStyle = args[10];
context.fillRect(-3 - width_offset,
0 - 3 - height - ieOffset + height_offset,
width + 6,
height + 6);
}
context.fillStyle = originalFillStyle;
/**
* Do the actual drawing of the text
*/
context.fillText(text,0,0);
}
context.restore();
// Reset the lineWidth
context.lineWidth = originalLineWidth;
context.restore();
};
/**
* This function returns the mouse position in relation to the canvas
*
* @param object e The event object.
*/
RG.getMouseXY = function (e)
{
var el = (RGraph.ISOLD ? event.srcElement : e.target);
var x;
var y;
// ???
var paddingLeft = el.style.paddingLeft ? parseInt(el.style.paddingLeft) : 0;
var paddingTop = el.style.paddingTop ? parseInt(el.style.paddingTop) : 0;
var borderLeft = el.style.borderLeftWidth ? parseInt(el.style.borderLeftWidth) : 0;
var borderTop = el.style.borderTopWidth ? parseInt(el.style.borderTopWidth) : 0;
if (RGraph.ISIE8) e = event;
// Browser with offsetX and offsetY
if (typeof(e.offsetX) == 'number' && typeof(e.offsetY) == 'number') {
x = e.offsetX;
y = e.offsetY;
// FF and other
} else {
x = 0;
y = 0;
while (el != document.body && el) {
x += el.offsetLeft;
y += el.offsetTop;
el = el.offsetParent;
}
x = e.pageX - x;
y = e.pageY - y;
}
return [x, y];
};
/**
* This function attempts to "fill in" missing functions from the canvas
* context object. Only two at the moment - measureText() nd fillText().
*
* @param object context The canvas 2D context
*/
RG.oldBrowserCompat =
RG.OldBrowserCompat = function (co)
{
if (!co) {
return;
}
if (!co.measureText) {
// This emulates the measureText() function
co.measureText = function (text)
{
var textObj = document.createElement('DIV');
textObj.innerHTML = text;
textObj.style.position = 'absolute';
textObj.style.top = '-100px';
textObj.style.left = 0;
document.body.appendChild(textObj);
var width = {width: textObj.offsetWidth};
textObj.style.display = 'none';
return width;
}
}
if (!co.fillText) {
// This emulates the fillText() method
co.fillText = function (text, targetX, targetY)
{
return false;
}
}
// If IE8, add addEventListener()
if (!co.canvas.addEventListener) {
window.addEventListener = function (ev, func, bubble)
{
return this.attachEvent('on' + ev, func);
}
co.canvas.addEventListener = function (ev, func, bubble)
{
return this.attachEvent('on' + ev, func);
}
}
};
/**
* Similar to the jQuery each() function - this lets you iterate easily over an array. The 'this' variable is set]
* to the array in the callback function.
*
* @param array arr The array
* @param function func The function to call
* @param object Optionally you can specify the object that the "this" variable is set to
*/
RG.each = function (arr, func)
{
for(var i=0, len=arr.length; i<len; i+=1) {
if (typeof arguments[2] !== 'undefined') {
var ret = func.call(arguments[2], i, arr[i]);
} else {
var ret = func.call(arr, i, arr[i]);
}
if (ret === false) {
return;
}
}
};
/**
* An old function the was used before all 4 gutters were added
*
* DEPRECATED
*
* @param object obj The chart object
*/
RG.getHeight =
RG.GetHeight = function (obj)
{
return obj.canvas.height;
};
/**
* An old function the was used before all 4 gutters were added
*
* DEPRECATED
*
* @param object obj The chart object
*/
RG.getWidth =
RG.GetWidth = function (obj)
{
return obj.canvas.width;
};
/**
* A timer function for measuring... time!
*
* @param string label A string to associate with this 'checkpoint'
*/
RG.timer =
RG.Timer = function (label)
{
if(typeof RG.TIMER_LAST_CHECKPOINT == 'undefined') {
RG.TIMER_LAST_CHECKPOINT = Date.now();
}
var now = Date.now();
console.log(label+': ' + (now - RG.TIMER_LAST_CHECKPOINT).toString());
RG.TIMER_LAST_CHECKPOINT = now;
};
/**
* If you prefer, you can use the SetConfig() method to set the configuration information
* for your chart. You may find that setting the configuration this way eases reuse.
*
* @param object obj The graph object
* @param object config The graph configuration information
*/
RG.setConfig =
RG.SetConfig = function (obj, config)
{
for (i in config) {
if (typeof i === 'string') {
obj.Set(i, config[i]);
}
}
return obj;
};
// End module pattern
})(window, document);
/**
* Checks whether strings or numbers are empty or not. It also
* handles null or variables set to undefined. If a variable really
* is undefined - ie it hasn't been declared at all - you need to use
* "typeof variable" and check the return value - which will be undefined.
*
* @param mixed value The variable to check
*/
window.$empty = function (value)
{
if (!value || value.length <= 0) {
return true;
}
return false;
};