/*! * froala_editor v3.2.5-1 (https://www.froala.com/wysiwyg-editor) * License https://froala.com/wysiwyg-editor/terms/ * Copyright 2014-2021 Froala Labs */ /*! @source http://purl.eligrey.com/github/classList.js/blob/master/classList.js */ /** * @license Highcharts JS v8.1.0 (2020-05-05) * * (c) 2009-2018 Torstein Honsi * * License: www.highcharts.com/license */ /** * @license Highcharts JS v8.1.0 (2020-05-05) * * Boost module * * (c) 2010-2019 Highsoft AS * Author: Torstein Honsi * * License: www.highcharts.com/license * * This is a Highcharts module that draws long data series on a canvas in order * to increase performance of the initial load time and tooltip responsiveness. * * Compatible with WebGL compatible browsers (not IE < 11). * * If this module is taken in as part of the core * - All the loading logic should be merged with core. Update styles in the * core. * - Most of the method wraps should probably be added directly in parent * methods. * * Notes for boost mode * - Area lines are not drawn * - Lines are not drawn on scatter charts * - Zones and negativeColor don't work * - Dash styles are not rendered on lines. * - Columns are always one pixel wide. Don't set the threshold too low. * - Disable animations * - Marker shapes are not supported: markers will always be circles, except * heatmap series, where markers are always rectangles. * * Optimizing tips for users * - Set extremes (min, max) explicitly on the axes in order for Highcharts to * avoid computing extremes. * - Set enableMouseTracking to false on the series to improve total rendering * time. * - The default threshold is set based on one series. If you have multiple, * dense series, the combined number of points drawn gets higher, and you may * want to set the threshold lower in order to use optimizations. * - If drawing large scatter charts, it's beneficial to set the marker radius * to a value less than 1. This is to add additional spacing to make the chart * more readable. * - If the value increments on both the X and Y axis aren't small, consider * setting useGPUTranslations to true on the boost settings object. If you do * this and the increments are small (e.g. datetime axis with small time * increments) it may cause rendering issues due to floating point rounding * errors, so your millage may vary. * * Settings * There are two ways of setting the boost threshold: * - Per series: boost based on number of points in individual series * - Per chart: boost based on the number of series * * To set the series boost threshold, set seriesBoostThreshold on the chart * object. * To set the series-specific threshold, set boostThreshold on the series * object. * * In addition, the following can be set in the boost object: * { * //Wether or not to use alpha blending * useAlpha: boolean - default: true * //Set to true to perform translations on the GPU. * //Much faster, but may cause rendering issues * //when using values far from 0 due to floating point * //rounding issues * useGPUTranslations: boolean - default: false * //Use pre-allocated buffers, much faster, * //but may cause rendering issues with some data sets * usePreallocated: boolean - default: false * } */ /** * @license Highmaps JS v8.1.0 (2020-05-05) * * (c) 2009-2019 Torstein Honsi * * License: www.highcharts.com/license */ /** @preserve * Counter block mode compatible with Dr Brian Gladman fileenc.c * derived from CryptoJS.mode.CTR * Jan Hruby jhruby.web@gmail.com */ /** @preserve (c) 2012 by Cédric Mesnil. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */