package.es-modules.Series.Treemap.TreemapNode.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!
/* *
*
* (c) 2010-2024 Pawel Lysy
*
* License: www.highcharts.com/license
*
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
*
* */
'use strict';
/* *
*
* Class
*
* */
class TreemapNode {
constructor() {
/* *
*
* Properties
*
* */
this.childrenTotal = 0;
this.visible = false;
}
/* *
*
* Functions
*
* */
init(id, i, children, height, level, series, parent) {
this.id = id;
this.i = i;
this.children = children;
this.height = height;
this.level = level;
this.series = series;
this.parent = parent;
return this;
}
}
/* *
*
* Default Export
*
* */
export default TreemapNode;