You need to sign in or sign up before continuing.
boost-canvas.src.js 25.2 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 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 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724
/**
 * @license Highcharts JS v6.2.0 (2018-10-17)
 * Boost module
 *
 * (c) 2010-2017 Highsoft AS
 * Author: Torstein Honsi
 *
 * License: www.highcharts.com/license
 */
'use strict';
(function (factory) {
	if (typeof module === 'object' && module.exports) {
		module.exports = factory;
	} else if (typeof define === 'function' && define.amd) {
		define(function () {
			return factory;
		});
	} else {
		factory(Highcharts);
	}
}(function (Highcharts) {
	(function (H) {
		/**
		 * License: www.highcharts.com/license
		 * Author: Torstein Honsi, Christer Vasseng
		 *
		 * This module serves as a fallback for the Boost module in IE9 and IE10. Newer
		 * browsers support WebGL which is faster.
		 *
		 * It is recommended to include this module in conditional comments targeting
		 * IE9 and IE10.
		 */

		var win = H.win,
		    doc = win.document,
		    noop = function () {},
		    Color = H.Color,
		    Series = H.Series,
		    seriesTypes = H.seriesTypes,
		    each = H.each,
		    extend = H.extend,
		    addEvent = H.addEvent,
		    fireEvent = H.fireEvent,
		    isNumber = H.isNumber,
		    merge = H.merge,
		    pick = H.pick,
		    wrap = H.wrap,
		    CHUNK_SIZE = 50000,
		    destroyLoadingDiv;

		H.initCanvasBoost = function () {
		    if (H.seriesTypes.heatmap) {
		        H.wrap(H.seriesTypes.heatmap.prototype, 'drawPoints', function () {
		            var ctx = this.getContext();
		            if (ctx) {

		                // draw the columns
		                each(this.points, function (point) {
		                    var plotY = point.plotY,
		                        shapeArgs,
		                        pointAttr;

		                    if (
		                        plotY !== undefined &&
		                        !isNaN(plotY) &&
		                        point.y !== null
		                    ) {
		                        shapeArgs = point.shapeArgs;

                        
		                        pointAttr = point.series.pointAttribs(point);
                        

		                        ctx.fillStyle = pointAttr.fill;
		                        ctx.fillRect(
		                            shapeArgs.x,
		                            shapeArgs.y,
		                            shapeArgs.width,
		                            shapeArgs.height
		                        );
		                    }
		                });

		                this.canvasToSVG();

		            } else {
		                this.chart.showLoading(
		                    'Your browser doesn\'t support HTML5 canvas, <br>' +
		                    'please use a modern browser');

		                // Uncomment this to provide low-level (slow) support in oldIE.
		                // It will cause script errors on charts with more than a few
		                // thousand points.
		                // arguments[0].call(this);
		            }
		        });
		    }


		    H.extend(Series.prototype, {

		        /**
		         * Create a hidden canvas to draw the graph on. The contents is later
		         * copied over to an SVG image element.
		         */
		        getContext: function () {
		            var chart = this.chart,
		                width = chart.chartWidth,
		                height = chart.chartHeight,
		                targetGroup = chart.seriesGroup || this.group,
		                target = this,
		                ctx,
		                swapXY = function (proceed, x, y, a, b, c, d) {
		                    proceed.call(this, y, x, a, b, c, d);
		                };

		            if (chart.isChartSeriesBoosting()) {
		                target = chart;
		                targetGroup = chart.seriesGroup;
		            }

		            ctx = target.ctx;

		            if (!target.canvas) {
		                target.canvas = doc.createElement('canvas');

		                target.renderTarget = chart.renderer.image(
		                    '',
		                    0,
		                    0,
		                    width,
		                    height
		                )
		                .addClass('highcharts-boost-canvas')
		                .add(targetGroup);

		                target.ctx = ctx = target.canvas.getContext('2d');

		                if (chart.inverted) {
		                    each(['moveTo', 'lineTo', 'rect', 'arc'], function (fn) {
		                        wrap(ctx, fn, swapXY);
		                    });
		                }

		                target.boostCopy = function () {
		                    target.renderTarget.attr({
		                        href: target.canvas.toDataURL('image/png')
		                    });
		                };

		                target.boostClear = function () {
		                    ctx.clearRect(
		                        0,
		                        0,
		                        target.canvas.width,
		                        target.canvas.height
		                    );

		                    if (target === this) {
		                        target.renderTarget.attr({ href: '' });
		                    }
		                };

		                target.boostClipRect = chart.renderer.clipRect();

		                target.renderTarget.clip(target.boostClipRect);

		            } else if (!(target instanceof H.Chart)) {
		                // ctx.clearRect(0, 0, width, height);
		            }

		            if (target.canvas.width !== width) {
		                target.canvas.width = width;
		            }

		            if (target.canvas.height !== height) {
		                target.canvas.height = height;
		            }

		            target.renderTarget.attr({
		                x: 0,
		                y: 0,
		                width: width,
		                height: height,
		                style: 'pointer-events: none',
		                href: ''
		            });

		            target.boostClipRect.attr(chart.getBoostClipRect(target));

		            return ctx;
		        },

		        /**
		         * Draw the canvas image inside an SVG image
		         */
		        canvasToSVG: function () {
		            if (!this.chart.isChartSeriesBoosting()) {
		                if (this.boostCopy || this.chart.boostCopy) {
		                    (this.boostCopy || this.chart.boostCopy)();
		                }
		            } else {
		                if (this.boostClear) {
		                    this.boostClear();
		                }
		            }
		        },

		        cvsLineTo: function (ctx, clientX, plotY) {
		            ctx.lineTo(clientX, plotY);
		        },

		        renderCanvas: function () {
		            var series = this,
		                options = series.options,
		                chart = series.chart,
		                xAxis = this.xAxis,
		                yAxis = this.yAxis,
		                activeBoostSettings = chart.options.boost || {},
		                boostSettings = {
		                    timeRendering: activeBoostSettings.timeRendering || false,
		                    timeSeriesProcessing:
		                        activeBoostSettings.timeSeriesProcessing || false,
		                    timeSetup: activeBoostSettings.timeSetup || false
		                },
		                ctx,
		                c = 0,
		                xData = series.processedXData,
		                yData = series.processedYData,
		                rawData = options.data,
		                xExtremes = xAxis.getExtremes(),
		                xMin = xExtremes.min,
		                xMax = xExtremes.max,
		                yExtremes = yAxis.getExtremes(),
		                yMin = yExtremes.min,
		                yMax = yExtremes.max,
		                pointTaken = {},
		                lastClientX,
		                sampling = !!series.sampling,
		                points,
		                r = options.marker && options.marker.radius,
		                cvsDrawPoint = this.cvsDrawPoint,
		                cvsLineTo = options.lineWidth ? this.cvsLineTo : false,
		                cvsMarker = r && r <= 1 ?
		                    this.cvsMarkerSquare :
		                    this.cvsMarkerCircle,
		                strokeBatch = this.cvsStrokeBatch || 1000,
		                enableMouseTracking = options.enableMouseTracking !== false,
		                lastPoint,
		                threshold = options.threshold,
		                yBottom = yAxis.getThreshold(threshold),
		                hasThreshold = isNumber(threshold),
		                translatedThreshold = yBottom,
		                doFill = this.fill,
		                isRange = series.pointArrayMap &&
		                    series.pointArrayMap.join(',') === 'low,high',
		                isStacked = !!options.stacking,
		                cropStart = series.cropStart || 0,
		                loadingOptions = chart.options.loading,
		                requireSorting = series.requireSorting,
		                wasNull,
		                connectNulls = options.connectNulls,
		                useRaw = !xData,
		                minVal,
		                maxVal,
		                minI,
		                maxI,
		                index,
		                sdata = isStacked ? series.data : (xData || rawData),
		                fillColor = series.fillOpacity ?
		                        new Color(series.color).setOpacity(
		                            pick(options.fillOpacity, 0.75)
		                        ).get() :
		                        series.color,

		                stroke = function () {
		                    if (doFill) {
		                        ctx.fillStyle = fillColor;
		                        ctx.fill();
		                    } else {
		                        ctx.strokeStyle = series.color;
		                        ctx.lineWidth = options.lineWidth;
		                        ctx.stroke();
		                    }
		                },

		                drawPoint = function (clientX, plotY, yBottom, i) {
		                    if (c === 0) {
		                        ctx.beginPath();

		                        if (cvsLineTo) {
		                            ctx.lineJoin = 'round';
		                        }
		                    }

		                    if (
		                        chart.scroller &&
		                        series.options.className ===
		                            'highcharts-navigator-series'
		                    ) {
		                        plotY += chart.scroller.top;
		                        if (yBottom) {
		                            yBottom += chart.scroller.top;
		                        }
		                    } else {
		                        plotY += chart.plotTop;
		                    }

		                    clientX += chart.plotLeft;

		                    if (wasNull) {
		                        ctx.moveTo(clientX, plotY);
		                    } else {
		                        if (cvsDrawPoint) {
		                            cvsDrawPoint(
		                                ctx,
		                                clientX,
		                                plotY,
		                                yBottom,
		                                lastPoint
		                            );
		                        } else if (cvsLineTo) {
		                            cvsLineTo(ctx, clientX, plotY);
		                        } else if (cvsMarker) {
		                            cvsMarker.call(series, ctx, clientX, plotY, r, i);
		                        }
		                    }

		                    // We need to stroke the line for every 1000 pixels. It will
		                    // crash the browser memory use if we stroke too
		                    // infrequently.
		                    c = c + 1;
		                    if (c === strokeBatch) {
		                        stroke();
		                        c = 0;
		                    }

		                    // Area charts need to keep track of the last point
		                    lastPoint = {
		                        clientX: clientX,
		                        plotY: plotY,
		                        yBottom: yBottom
		                    };
		                },

		                compareX = options.findNearestPointBy === 'x',

		                xDataFull = (
		                    this.xData ||
		                    this.options.xData ||
		                    this.processedXData ||
		                    false
		                ),


		                addKDPoint = function (clientX, plotY, i) {
		                    // Shaves off about 60ms compared to repeated concatenation
		                    index = compareX ? clientX : clientX + ',' + plotY;

		                    // The k-d tree requires series points.
		                    // Reduce the amount of points, since the time to build the
		                    // tree increases exponentially.
		                    if (enableMouseTracking && !pointTaken[index]) {
		                        pointTaken[index] = true;

		                        if (chart.inverted) {
		                            clientX = xAxis.len - clientX;
		                            plotY = yAxis.len - plotY;
		                        }

		                        points.push({
		                            x: xDataFull ? xDataFull[cropStart + i] : false,
		                            clientX: clientX,
		                            plotX: clientX,
		                            plotY: plotY,
		                            i: cropStart + i
		                        });
		                    }
		                };

		            if (this.renderTarget) {
		                this.renderTarget.attr({ 'href': '' });
		            }

		            // If we are zooming out from SVG mode, destroy the graphics
		            if (this.points || this.graph) {
		                this.destroyGraphics();
		            }

		            // The group
		            series.plotGroup(
		                'group',
		                'series',
		                series.visible ? 'visible' : 'hidden',
		                options.zIndex,
		                chart.seriesGroup
		            );

		            series.markerGroup = series.group;
		            addEvent(series, 'destroy', function () { // Prevent destroy twice
		                series.markerGroup = null;
		            });

		            points = this.points = [];
		            ctx = this.getContext();
		            series.buildKDTree = noop; // Do not start building while drawing

		            if (this.boostClear) {
		                this.boostClear();
		            }

		            // if (this.canvas) {
		            //     ctx.clearRect(
		            //         0,
		            //         0,
		            //         this.canvas.width,
		            //         this.canvas.height
		            //     );
		            // }

		            if (!this.visible) {
		                return;
		            }

		            // Display a loading indicator
		            if (rawData.length > 99999) {
		                chart.options.loading = merge(loadingOptions, {
		                    labelStyle: {
		                        backgroundColor: H.color('#ffffff')
		                            .setOpacity(0.75).get(),
		                        padding: '1em',
		                        borderRadius: '0.5em'
		                    },
		                    style: {
		                        backgroundColor: 'none',
		                        opacity: 1
		                    }
		                });
		                H.clearTimeout(destroyLoadingDiv);
		                chart.showLoading('Drawing...');
		                chart.options.loading = loadingOptions; // reset
		            }

		            if (boostSettings.timeRendering) {
		                console.time('canvas rendering'); // eslint-disable-line no-console
		            }

		            // Loop over the points
		            H.eachAsync(sdata, function (d, i) {
		                var x,
		                    y,
		                    clientX,
		                    plotY,
		                    isNull,
		                    low,
		                    isNextInside = false,
		                    isPrevInside = false,
		                    nx = false,
		                    px = false,
		                    chartDestroyed = typeof chart.index === 'undefined',
		                    isYInside = true;

		                if (!chartDestroyed) {
		                    if (useRaw) {
		                        x = d[0];
		                        y = d[1];

		                        if (sdata[i + 1]) {
		                            nx = sdata[i + 1][0];
		                        }

		                        if (sdata[i - 1]) {
		                            px = sdata[i - 1][0];
		                        }
		                    } else {
		                        x = d;
		                        y = yData[i];

		                        if (sdata[i + 1]) {
		                            nx = sdata[i + 1];
		                        }

		                        if (sdata[i - 1]) {
		                            px = sdata[i - 1];
		                        }
		                    }

		                    if (nx && nx >= xMin && nx <= xMax) {
		                        isNextInside = true;
		                    }

		                    if (px && px >= xMin && px <= xMax) {
		                        isPrevInside = true;
		                    }

		                    // Resolve low and high for range series
		                    if (isRange) {
		                        if (useRaw) {
		                            y = d.slice(1, 3);
		                        }
		                        low = y[0];
		                        y = y[1];
		                    } else if (isStacked) {
		                        x = d.x;
		                        y = d.stackY;
		                        low = y - d.y;
		                    }

		                    isNull = y === null;

		                    // Optimize for scatter zooming
		                    if (!requireSorting) {
		                        isYInside = y >= yMin && y <= yMax;
		                    }

		                    if (!isNull &&
		                        (
		                            (x >= xMin && x <= xMax && isYInside) ||
		                            (isNextInside || isPrevInside)
		                        )) {


		                        clientX = Math.round(xAxis.toPixels(x, true));

		                        if (sampling) {
		                            if (minI === undefined || clientX === lastClientX) {
		                                if (!isRange) {
		                                    low = y;
		                                }
		                                if (maxI === undefined || y > maxVal) {
		                                    maxVal = y;
		                                    maxI = i;
		                                }
		                                if (minI === undefined || low < minVal) {
		                                    minVal = low;
		                                    minI = i;
		                                }

		                            }
		                            // Add points and reset
		                            if (clientX !== lastClientX) {
		                                if (minI !== undefined) { // maxI also a number
		                                    plotY = yAxis.toPixels(maxVal, true);
		                                    yBottom = yAxis.toPixels(minVal, true);
		                                    drawPoint(
		                                        clientX,
		                                        hasThreshold ?
		                                            Math.min(
		                                                plotY,
		                                                translatedThreshold
		                                            ) : plotY,
		                                        hasThreshold ?
		                                            Math.max(
		                                                yBottom,
		                                                translatedThreshold
		                                            ) : yBottom,
		                                        i
		                                    );
		                                    addKDPoint(clientX, plotY, maxI);
		                                    if (yBottom !== plotY) {
		                                        addKDPoint(clientX, yBottom, minI);
		                                    }
		                                }

		                                minI = maxI = undefined;
		                                lastClientX = clientX;
		                            }
		                        } else {
		                            plotY = Math.round(yAxis.toPixels(y, true));
		                            drawPoint(clientX, plotY, yBottom, i);
		                            addKDPoint(clientX, plotY, i);
		                        }
		                    }
		                    wasNull = isNull && !connectNulls;

		                    if (i % CHUNK_SIZE === 0) {
		                        if (series.boostCopy || series.chart.boostCopy) {
		                            (series.boostCopy || series.chart.boostCopy)();
		                        }
		                    }
		                }

		                return !chartDestroyed;
		            }, function () {
		                var loadingDiv = chart.loadingDiv,
		                    loadingShown = chart.loadingShown;
		                stroke();

		                // if (series.boostCopy || series.chart.boostCopy) {
		                //     (series.boostCopy || series.chart.boostCopy)();
		                // }

		                series.canvasToSVG();

		                if (boostSettings.timeRendering) {
		                    console.timeEnd('canvas rendering'); // eslint-disable-line no-console
		                }

		                fireEvent(series, 'renderedCanvas');

		                // Do not use chart.hideLoading, as it runs JS animation and
		                // will be blocked by buildKDTree. CSS animation looks good, but
		                // then it must be deleted in timeout. If we add the module to
		                // core, change hideLoading so we can skip this block.
		                if (loadingShown) {
		                    extend(loadingDiv.style, {
		                        transition: 'opacity 250ms',
		                        opacity: 0
		                    });
		                    chart.loadingShown = false;
		                    destroyLoadingDiv = setTimeout(function () {
		                        if (loadingDiv.parentNode) { // In exporting it is falsy
		                            loadingDiv.parentNode.removeChild(loadingDiv);
		                        }
		                        chart.loadingDiv = chart.loadingSpan = null;
		                    }, 250);
		                }

		                // Go back to prototype, ready to build
		                delete series.buildKDTree;

		                series.buildKDTree();

		            // Don't do async on export, the exportChart, getSVGForExport and
		            // getSVG methods are not chained for it.
		            }, chart.renderer.forExport ? Number.MAX_VALUE : undefined);
		        }
		    });

		    seriesTypes.scatter.prototype.cvsMarkerCircle = function (
		        ctx,
		        clientX,
		        plotY,
		        r
		    ) {
		        ctx.moveTo(clientX, plotY);
		        ctx.arc(clientX, plotY, r, 0, 2 * Math.PI, false);
		    };

		    // Rect is twice as fast as arc, should be used for small markers
		    seriesTypes.scatter.prototype.cvsMarkerSquare = function (
		        ctx,
		        clientX,
		        plotY,
		        r
		    ) {
		        ctx.rect(clientX - r, plotY - r, r * 2, r * 2);
		    };
		    seriesTypes.scatter.prototype.fill = true;

		    if (seriesTypes.bubble) {
		        seriesTypes.bubble.prototype.cvsMarkerCircle = function (
		            ctx,
		            clientX,
		            plotY,
		            r,
		            i
		        ) {
		            ctx.moveTo(clientX, plotY);
		            ctx.arc(
		                clientX,
		                plotY,
		                this.radii && this.radii[i], 0, 2 * Math.PI,
		                false
		            );
		        };
		        seriesTypes.bubble.prototype.cvsStrokeBatch = 1;
		    }

		    extend(seriesTypes.area.prototype, {
		        cvsDrawPoint: function (ctx, clientX, plotY, yBottom, lastPoint) {
		            if (lastPoint && clientX !== lastPoint.clientX) {
		                ctx.moveTo(lastPoint.clientX, lastPoint.yBottom);
		                ctx.lineTo(lastPoint.clientX, lastPoint.plotY);
		                ctx.lineTo(clientX, plotY);
		                ctx.lineTo(clientX, yBottom);
		            }
		        },
		        fill: true,
		        fillOpacity: true,
		        sampling: true
		    });

		    extend(seriesTypes.column.prototype, {
		        cvsDrawPoint: function (ctx, clientX, plotY, yBottom) {
		            ctx.rect(clientX - 1, plotY, 1, yBottom - plotY);
		        },
		        fill: true,
		        sampling: true
		    });

		    H.Chart.prototype.callbacks.push(function (chart) {
		        function canvasToSVG() {
		            if (chart.boostCopy) {
		                chart.boostCopy();
		            }
		        }

		        function clear() {
		            if (chart.renderTarget) {
		                chart.renderTarget.attr({ href: '' });
		            }

		            if (chart.canvas) {
		                chart.canvas.getContext('2d').clearRect(
		                    0,
		                    0,
		                    chart.canvas.width,
		                    chart.canvas.height
		                );
		            }
		        }

		        addEvent(chart, 'predraw', clear);
		        addEvent(chart, 'render', canvasToSVG);
		    });
		};

	}(Highcharts));
	return (function () {


	}());
}));