highcharts
Version:
JavaScript charting framework
40 lines (39 loc) • 767 B
JavaScript
/* *
*
* Experimental Highcharts module which enables visualization of a word cloud.
*
* (c) 2016-2026 Highsoft AS
* Authors: Jon Arild Nygård
*
* A commercial license may be required depending on use.
* See www.highcharts.com/license
*
* */
;
import SeriesRegistry from '../../Core/Series/SeriesRegistry.js';
const { column: { prototype: { pointClass: ColumnPoint } } } = SeriesRegistry.seriesTypes;
import { extend } from '../../Shared/Utilities.js';
/* *
*
* Class
*
* */
class WordcloudPoint extends ColumnPoint {
/* *
*
* Functions
*
* */
isValid() {
return true;
}
}
extend(WordcloudPoint.prototype, {
weight: 1
});
/* *
*
* Default Export
*
* */
export default WordcloudPoint;