UNPKG

highcharts

Version:
37 lines (36 loc) 752 B
/* * * * Highcharts cylinder - a 3D series * * (c) 2010-2026 Highsoft AS * * Author: Kacper Madej * * Integration of this software requires a license. * - For commercial use, see www.highcharts.com/license * - For non-commercial, see www.highcharts.com/license-eula * * * */ 'use strict'; import SeriesRegistry from '../../Core/Series/SeriesRegistry.js'; import { extend } from '../../Shared/Utilities.js'; const { column: { prototype: { pointClass: ColumnPoint } } } = SeriesRegistry.seriesTypes; /* * * * Class * * */ /** @internal */ class CylinderPoint extends ColumnPoint { } extend(CylinderPoint.prototype, { shapeType: 'cylinder' }); /* * * * Default Export * * */ /** @internal */ export default CylinderPoint;