UNPKG

highcharts

Version:
35 lines (34 loc) 648 B
/* * * * Highcharts funnel3d series module * * (c) 2010-2026 Highsoft AS * * Author: Kacper Madej * * A commercial license may be required depending on use. * See www.highcharts.com/license * * * */ 'use strict'; import SeriesRegistry from '../../Core/Series/SeriesRegistry.js'; const { seriesTypes: { column: ColumnSeries } } = SeriesRegistry; import U from '../../Core/Utilities.js'; const { extend } = U; /* * * * Class * * */ class Funnel3DPoint extends ColumnSeries.prototype.pointClass { } extend(Funnel3DPoint.prototype, { shapeType: 'funnel3d' }); /* * * * Default Export * * */ export default Funnel3DPoint;