UNPKG

highcharts

Version:
24 lines (23 loc) 701 B
// SPDX-License-Identifier: LicenseRef-Highcharts /** * @license Highcharts Gantt JS v13.0.1 (2026-08-17) * @module highcharts/modules/pathfinder * @requires highcharts * * Pathfinder * * (c) 2016-2026 Highsoft AS * Author: Øystein Moseng * * A commercial license may be required depending on use, * see www.highcharts.com/license */ 'use strict'; import Highcharts from '../../Core/Globals.js'; import Pathfinder from '../../Gantt/Pathfinder.js'; import { composeArrowSymbols } from '../../Extensions/ArrowSymbols.js'; const G = Highcharts; G.Pathfinder = G.Pathfinder || Pathfinder; composeArrowSymbols(G.SVGRenderer); G.Pathfinder.compose(G.Chart, G.Point); export default Highcharts;