package.es-modules.Series.Cylinder.SVGElement3DCylinder.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of highcharts Show documentation
Show all versions of highcharts Show documentation
JavaScript charting framework
The newest version!
/* *
*
* Highcharts cylinder - a 3D series
*
* (c) 2010-2024 Highsoft AS
*
* Author: Kacper Madej
*
* License: www.highcharts.com/license
*
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
*
* */
'use strict';
import Color from '../../Core/Color/Color.js';
const { parse: color } = Color;
import RendererRegistry from '../../Core/Renderer/RendererRegistry.js';
const { Element3D: SVGElement3D } = RendererRegistry.getRendererType().prototype;
/* *
*
* Class
*
* */
class SVGElement3DCylinder extends SVGElement3D {
constructor() {
/* *
*
* Properties
*
* */
super(...arguments);
this.parts = ['top', 'bottom', 'front', 'back'];
this.pathType = 'cylinder';
}
/* *
*
* Functions
*
* */
fillSetter(fill) {
this.singleSetterForParts('fill', null, {
front: fill,
back: fill,
top: color(fill).brighten(0.1).get(),
bottom: color(fill).brighten(-0.1).get()
});
// Fill for animation getter (#6776)
this.color = this.fill = fill;
return this;
}
}
/* *
*
* Default Export
*
* */
export default SVGElement3DCylinder;