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,47 @@
/* *
*
* (c) 2010-2021 Torstein Honsi
*
* Extension to the VML Renderer
*
* License: www.highcharts.com/license
*
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
*
* */
'use strict';
import Axis from '../../Core/Axis/Axis.js';
import D from '../../Core/DefaultOptions.js';
var setOptions = D.setOptions;
import VMLAxis3D from './VMLAxis3D.js';
var VMLRenderer3D = /** @class */ (function () {
function VMLRenderer3D() {
}
/* *
*
* Static Properties
*
* */
VMLRenderer3D.compose = function (vmlClass, svgClass) {
var svgProto = svgClass.prototype;
var vmlProto = vmlClass.prototype;
setOptions({ animate: false });
vmlProto.face3d = svgProto.face3d;
vmlProto.polyhedron = svgProto.polyhedron;
vmlProto.elements3d = svgProto.elements3d;
vmlProto.element3d = svgProto.element3d;
vmlProto.cuboid = svgProto.cuboid;
vmlProto.cuboidPath = svgProto.cuboidPath;
vmlProto.toLinePath = svgProto.toLinePath;
vmlProto.toLineSegments = svgProto.toLineSegments;
vmlProto.arc3d = function (shapeArgs) {
var result = svgProto.arc3d.call(this, shapeArgs);
result.css({ zIndex: result.zIndex });
return result;
};
vmlProto.arc3dPath = svgProto.arc3dPath;
VMLAxis3D.compose(Axis);
};
return VMLRenderer3D;
}());
export default VMLRenderer3D;