highcharts
Version:
JavaScript charting framework
48 lines (47 loc) • 787 B
JavaScript
/* *
*
* (c) 2010-2025 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;