Hacked By AnonymousFox

Current Path : C:/AppServ/www/financial/stacked/code/modules/
Upload File :
Current File : C:/AppServ/www/financial/stacked/code/modules/price-indicator.js.map

{"version":3,"sources":["<anon>"],"sourcesContent":["/**\n * @license Highstock JS v12.1.2 (2025-01-09)\n * @module highcharts/modules/price-indicator\n * @requires highcharts\n * @requires highcharts/modules/stock\n *\n * Advanced Highcharts Stock tools\n *\n * (c) 2010-2024 Highsoft AS\n * Author: Torstein Honsi\n *\n * License: www.highcharts.com/license\n */\n(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory(root[\"_Highcharts\"]);\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine(\"highcharts/modules/price-indicator\", [\"highcharts/highcharts\"], function (amd1) {return factory(amd1);});\n\telse if(typeof exports === 'object')\n\t\texports[\"highcharts/modules/price-indicator\"] = factory(root[\"_Highcharts\"]);\n\telse\n\t\troot[\"Highcharts\"] = factory(root[\"Highcharts\"]);\n})(typeof window === 'undefined' ? this : window, (__WEBPACK_EXTERNAL_MODULE__944__) => {\nreturn /******/ (() => { // webpackBootstrap\n/******/ \t\"use strict\";\n/******/ \tvar __webpack_modules__ = ({\n\n/***/ 944:\n/***/ ((module) => {\n\nmodule.exports = __WEBPACK_EXTERNAL_MODULE__944__;\n\n/***/ })\n\n/******/ \t});\n/************************************************************************/\n/******/ \t// The module cache\n/******/ \tvar __webpack_module_cache__ = {};\n/******/ \t\n/******/ \t// The require function\n/******/ \tfunction __webpack_require__(moduleId) {\n/******/ \t\t// Check if module is in cache\n/******/ \t\tvar cachedModule = __webpack_module_cache__[moduleId];\n/******/ \t\tif (cachedModule !== undefined) {\n/******/ \t\t\treturn cachedModule.exports;\n/******/ \t\t}\n/******/ \t\t// Create a new module (and put it into the cache)\n/******/ \t\tvar module = __webpack_module_cache__[moduleId] = {\n/******/ \t\t\t// no module.id needed\n/******/ \t\t\t// no module.loaded needed\n/******/ \t\t\texports: {}\n/******/ \t\t};\n/******/ \t\n/******/ \t\t// Execute the module function\n/******/ \t\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n/******/ \t\n/******/ \t\t// Return the exports of the module\n/******/ \t\treturn module.exports;\n/******/ \t}\n/******/ \t\n/************************************************************************/\n/******/ \t/* webpack/runtime/compat get default export */\n/******/ \t(() => {\n/******/ \t\t// getDefaultExport function for compatibility with non-harmony modules\n/******/ \t\t__webpack_require__.n = (module) => {\n/******/ \t\t\tvar getter = module && module.__esModule ?\n/******/ \t\t\t\t() => (module['default']) :\n/******/ \t\t\t\t() => (module);\n/******/ \t\t\t__webpack_require__.d(getter, { a: getter });\n/******/ \t\t\treturn getter;\n/******/ \t\t};\n/******/ \t})();\n/******/ \t\n/******/ \t/* webpack/runtime/define property getters */\n/******/ \t(() => {\n/******/ \t\t// define getter functions for harmony exports\n/******/ \t\t__webpack_require__.d = (exports, definition) => {\n/******/ \t\t\tfor(var key in definition) {\n/******/ \t\t\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n/******/ \t\t\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n/******/ \t\t\t\t}\n/******/ \t\t\t}\n/******/ \t\t};\n/******/ \t})();\n/******/ \t\n/******/ \t/* webpack/runtime/hasOwnProperty shorthand */\n/******/ \t(() => {\n/******/ \t\t__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))\n/******/ \t})();\n/******/ \t\n/************************************************************************/\nvar __webpack_exports__ = {};\n\n// EXPORTS\n__webpack_require__.d(__webpack_exports__, {\n  \"default\": () => (/* binding */ price_indicator_src)\n});\n\n// EXTERNAL MODULE: external {\"amd\":[\"highcharts/highcharts\"],\"commonjs\":[\"highcharts\"],\"commonjs2\":[\"highcharts\"],\"root\":[\"Highcharts\"]}\nvar highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_ = __webpack_require__(944);\nvar highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_default = /*#__PURE__*/__webpack_require__.n(highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_);\n;// ./code/es-modules/Extensions/PriceIndication.js\n/**\n * (c) 2009-2024 Sebastian Bochann\n *\n * Price indicator for Highcharts\n *\n * License: www.highcharts.com/license\n *\n *  !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!\n */\n\n\nconst { composed } = (highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_default());\n\nconst { addEvent, merge, pushUnique } = (highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_default());\n/* *\n *\n *  Composition\n *\n * */\n/** @private */\nfunction compose(SeriesClass) {\n    if (pushUnique(composed, 'PriceIndication')) {\n        addEvent(SeriesClass, 'afterRender', onSeriesAfterRender);\n    }\n}\n/** @private */\nfunction onSeriesAfterRender() {\n    const series = this, seriesOptions = series.options, lastVisiblePrice = seriesOptions.lastVisiblePrice, lastPrice = seriesOptions.lastPrice;\n    if ((lastVisiblePrice || lastPrice) &&\n        seriesOptions.id !== 'highcharts-navigator-series') {\n        const xAxis = series.xAxis, yAxis = series.yAxis, origOptions = yAxis.crosshair, origGraphic = yAxis.cross, origLabel = yAxis.crossLabel, points = series.points, pLength = points.length, dataLength = series.dataTable.rowCount, x = series.getColumn('x')[dataLength - 1], y = series.getColumn('y')[dataLength - 1] ??\n            series.getColumn('close')[dataLength - 1];\n        let yValue;\n        if (lastPrice && lastPrice.enabled) {\n            yAxis.crosshair = yAxis.options.crosshair = seriesOptions.lastPrice;\n            if (!series.chart.styledMode &&\n                yAxis.crosshair &&\n                yAxis.options.crosshair &&\n                seriesOptions.lastPrice) {\n                // Set the default color from the series, #14888.\n                yAxis.crosshair.color = yAxis.options.crosshair.color =\n                    seriesOptions.lastPrice.color || series.color;\n            }\n            yAxis.cross = series.lastPrice;\n            yValue = y;\n            if (series.lastPriceLabel) {\n                series.lastPriceLabel.destroy();\n            }\n            delete yAxis.crossLabel;\n            yAxis.drawCrosshair(null, ({\n                x: x,\n                y: yValue,\n                plotX: xAxis.toPixels(x, true),\n                plotY: yAxis.toPixels(yValue, true)\n            }));\n            // Save price\n            if (series.yAxis.cross) {\n                series.lastPrice = series.yAxis.cross;\n                series.lastPrice.addClass('highcharts-color-' + series.colorIndex); // #15222\n                series.lastPrice.y = yValue;\n            }\n            series.lastPriceLabel = yAxis.crossLabel;\n        }\n        if (lastVisiblePrice && lastVisiblePrice.enabled && pLength > 0) {\n            yAxis.crosshair = yAxis.options.crosshair = merge({\n                color: 'transparent' // Line invisible by default\n            }, seriesOptions.lastVisiblePrice);\n            yAxis.cross = series.lastVisiblePrice;\n            const lastPoint = points[pLength - 1].isInside ?\n                points[pLength - 1] : points[pLength - 2];\n            if (series.lastVisiblePriceLabel) {\n                series.lastVisiblePriceLabel.destroy();\n            }\n            // Set to undefined to avoid collision with\n            // the yAxis crosshair #11480\n            // Delete the crossLabel each time the code is invoked, #13876.\n            delete yAxis.crossLabel;\n            // Save price\n            yAxis.drawCrosshair(null, lastPoint);\n            if (yAxis.cross) {\n                series.lastVisiblePrice = yAxis.cross;\n                if (lastPoint && typeof lastPoint.y === 'number') {\n                    series.lastVisiblePrice.y = lastPoint.y;\n                }\n            }\n            series.lastVisiblePriceLabel = yAxis.crossLabel;\n        }\n        // Restore crosshair:\n        yAxis.crosshair = yAxis.options.crosshair = origOptions;\n        yAxis.cross = origGraphic;\n        yAxis.crossLabel = origLabel;\n    }\n}\n/* *\n *\n *  Default Export\n *\n * */\nconst PriceIndication = {\n    compose\n};\n/* harmony default export */ const Extensions_PriceIndication = (PriceIndication);\n/* *\n *\n *  API Options\n *\n * */\n/**\n * The line marks the last price from visible range of points.\n *\n * @sample {highstock} stock/indicators/last-visible-price\n *         Last visible price\n *\n * @declare   Highcharts.SeriesLastVisiblePriceOptionsObject\n * @product   highstock\n * @requires  modules/price-indicator\n * @apioption plotOptions.series.lastVisiblePrice\n */\n/**\n * Enable or disable the indicator.\n *\n * @type      {boolean}\n * @product   highstock\n * @default   false\n * @apioption plotOptions.series.lastVisiblePrice.enabled\n */\n/**\n * @declare   Highcharts.SeriesLastVisiblePriceLabelOptionsObject\n * @extends   yAxis.crosshair.label\n * @since     7.0.0\n * @apioption plotOptions.series.lastVisiblePrice.label\n */\n/**\n * @since     7.0.0\n * @apioption plotOptions.series.lastVisiblePrice.label.align\n */\n/**\n * @since     7.0.0\n * @apioption plotOptions.series.lastVisiblePrice.label.backgroundColor\n */\n/**\n * The border color for the `lastVisiblePrice` label.\n *\n * @type      {Highcharts.ColorType}\n * @since     7.0.0\n * @product   highstock\n * @apioption plotOptions.series.lastVisiblePrice.label.borderColor\n */\n/**\n * The border corner radius of the `lastVisiblePrice` label.\n *\n * @type      {number}\n * @default   3\n * @since     7.0.0\n * @product   highstock\n * @apioption plotOptions.series.lastVisiblePrice.label.borderRadius\n*/\n/**\n * Flag to enable `lastVisiblePrice` label.\n *\n *\n * @type      {boolean}\n * @default   false\n * @since     7.0\n * @product   highstock\n * @apioption plotOptions.series.lastVisiblePrice.label.enabled\n */\n/**\n * A format string for the `lastVisiblePrice` label. Defaults to `{value}` for\n * numeric axes and `{value:%b %d, %Y}` for datetime axes.\n *\n * @type      {string}\n * @since     7.0\n * @product   highstock\n * @apioption plotOptions.series.lastVisiblePrice.label.format\n*/\n/**\n * @since     7.0.0\n * @apioption plotOptions.series.lastVisiblePrice.label.formatter\n */\n/**\n * @since     7.0.0\n * @apioption plotOptions.series.lastVisiblePrice.label.padding\n */\n/**\n * @since     7.0.0\n * @apioption plotOptions.series.lastVisiblePrice.label.shape\n */\n/**\n * Text styles for the `lastVisiblePrice` label.\n *\n * @type      {Highcharts.CSSObject}\n * @default   {\"color\": \"white\", \"fontWeight\": \"normal\", \"fontSize\": \"11px\", \"textAlign\": \"center\"}\n * @since     7.0\n * @product   highstock\n * @apioption plotOptions.series.lastVisiblePrice.label.style\n */\n/**\n * The border width for the `lastVisiblePrice` label.\n *\n * @type      {number}\n * @default   0\n * @since     7.0\n * @product   highstock\n * @apioption plotOptions.series.lastVisiblePrice.label.borderWidth\n*/\n/**\n * Padding inside the `lastVisiblePrice` label.\n *\n * @type      {number}\n * @default   8\n * @since     7.0\n * @product   highstock\n * @apioption plotOptions.series.lastVisiblePrice.label.padding\n */\n/**\n * The line marks the last price from all points.\n *\n * @sample {highstock} stock/indicators/last-price\n *         Last price\n *\n * @declare   Highcharts.SeriesLastPriceOptionsObject\n * @product   highstock\n * @requires  modules/price-indicator\n * @apioption plotOptions.series.lastPrice\n */\n/**\n * Enable or disable the indicator.\n *\n * @type      {boolean}\n * @product   highstock\n * @default   false\n * @apioption plotOptions.series.lastPrice.enabled\n */\n/**\n * @declare   Highcharts.SeriesLastPriceLabelOptionsObject\n * @extends   yAxis.crosshair.label\n * @since     7.0.0\n * @apioption plotOptions.series.lastPrice.label\n */\n/**\n * @since     7.0.0\n * @apioption plotOptions.series.lastPrice.label.align\n * */\n/**\n * @since     7.0.0\n * @apioption plotOptions.series.lastPrice.label.backgroundColor\n * */\n/**\n * The border color of `lastPrice` label.\n * @since     7.0.0\n * @apioption plotOptions.series.lastPrice.label.borderColor\n * */\n/**\n * The border radius of `lastPrice` label.\n * @since     7.0.0\n * @apioption plotOptions.series.lastPrice.label.borderRadius\n * */\n/**\n * The border width of `lastPrice` label.\n * @since     7.0.0\n * @apioption plotOptions.series.lastPrice.label.borderWidth\n * */\n/**\n * Flag to enable `lastPrice` label.\n * @since     7.0.0\n * @apioption plotOptions.series.lastPrice.label.enabled\n * */\n/**\n * A format string for the `lastPrice` label. Defaults to `{value}` for\n * numeric axes and `{value:%b %d, %Y}` for datetime axes.\n *\n * @type      {string}\n * @since     7.0\n * @product   highstock\n * @apioption plotOptions.series.lastPrice.label.format\n*/\n/**\n * @since     7.0.0\n * @apioption plotOptions.series.lastPrice.label.formatter\n */\n/**\n * @since     7.0.0\n * @apioption plotOptions.series.lastPrice.label.padding\n */\n/**\n * @since     7.0.0\n * @apioption plotOptions.series.lastPrice.label.shape\n */\n/**\n * Text styles for the `lastPrice` label.\n *\n * @type      {Highcharts.CSSObject}\n * @default   {\"color\": \"white\", \"fontWeight\": \"normal\", \"fontSize\": \"11px\", \"textAlign\": \"center\"}\n * @since     7.0\n * @product   highstock\n * @apioption plotOptions.series.lastPrice.label.style\n */\n/**\n * The border width for the `lastPrice` label.\n *\n * @type      {number}\n * @default   0\n * @since     7.0\n * @product   highstock\n * @apioption plotOptions.series.lastPrice.label.borderWidth\n*/\n/**\n * Padding inside the `lastPrice` label.\n *\n * @type      {number}\n * @default   8\n * @since     7.0\n * @product   highstock\n * @apioption plotOptions.series.lastPrice.label.padding\n */\n/**\n * The color of the line of last price.\n * By default, the line has the same color as the series.\n *\n * @type      {string}\n * @product   highstock\n * @apioption plotOptions.series.lastPrice.color\n *\n */\n''; // Keeps doclets above in JS file\n\n;// ./code/es-modules/masters/modules/price-indicator.src.js\n\n\n\n\nconst G = (highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_default());\nExtensions_PriceIndication.compose(G.Series);\n/* harmony default export */ const price_indicator_src = ((highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_default()));\n\n__webpack_exports__ = __webpack_exports__[\"default\"];\n/******/ \treturn __webpack_exports__;\n/******/ })()\n;\n});"],"names":["root","factory","exports","module","define","amd","amd1","window","__WEBPACK_EXTERNAL_MODULE__944__","__webpack_modules__","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","undefined","n","getter","__esModule","d","a","definition","key","o","Object","defineProperty","enumerable","get","obj","prop","prototype","hasOwnProperty","call","__webpack_exports__","price_indicator_src","highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_","highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_default","composed","addEvent","merge","pushUnique","onSeriesAfterRender","seriesOptions","series","options","lastVisiblePrice","lastPrice","id","xAxis","yAxis","origOptions","crosshair","origGraphic","cross","origLabel","crossLabel","points","pLength","length","dataLength","dataTable","rowCount","x","getColumn","y","enabled","chart","styledMode","color","lastPriceLabel","destroy","drawCrosshair","plotX","toPixels","plotY","addClass","colorIndex","lastPoint","isInside","lastVisiblePriceLabel","Extensions_PriceIndication","compose","SeriesClass","G","Series"],"mappings":"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"}

Hacked By AnonymousFox1.0, Coded By AnonymousFox