Carga
This commit is contained in:
2025-04-17 00:35:33 -06:00
parent 4977462629
commit 67fc72aed5
1333 changed files with 1077639 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
/* *
*
* (c) 2010-2021 Torstein Honsi
*
* 3D pie series
*
* License: www.highcharts.com/license
*
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
*
* */
/* *
*
* Imports
*
* */
import Pie3DPoint from './Pie3DPoint.js';
import Pie3DSeries from './Pie3DSeries.js';
import SeriesRegistry from '../../Core/Series/SeriesRegistry.js';
/* *
*
* Composition
*
* */
SeriesRegistry.seriesTypes.pie.prototype.pointClass.prototype
.haloPath = Pie3DPoint.prototype.haloPath;
SeriesRegistry.seriesTypes.pie = Pie3DSeries;