highcharts
Version:
JavaScript charting framework
41 lines (40 loc) • 800 B
JavaScript
/* *
*
* Experimental Highcharts module which enables visualization of a word cloud.
*
* (c) 2016-2025 Highsoft AS
* Authors: Jon Arild Nygard
*
* License: www.highcharts.com/license
*
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
* */
;
import SeriesRegistry from '../../Core/Series/SeriesRegistry.js';
const { column: { prototype: { pointClass: ColumnPoint } } } = SeriesRegistry.seriesTypes;
import U from '../../Core/Utilities.js';
const { extend } = U;
/* *
*
* Class
*
* */
class WordcloudPoint extends ColumnPoint {
/* *
*
* Functions
*
* */
isValid() {
return true;
}
}
extend(WordcloudPoint.prototype, {
weight: 1
});
/* *
*
* Default Export
*
* */
export default WordcloudPoint;