UNPKG

highcharts

Version:
34 lines (33 loc) 637 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'; import { extend } from '../../Shared/Utilities.js'; const { seriesTypes: { column: ColumnSeries } } = SeriesRegistry; /* * * * Class * * */ class Funnel3DPoint extends ColumnSeries.prototype.pointClass { } extend(Funnel3DPoint.prototype, { shapeType: 'funnel3d' }); /* * * * Default Export * * */ export default Funnel3DPoint;