/* * * * Experimental Highcharts module which enables visualization of a word cloud. * * (c) 2016-2026 Highsoft AS * Authors: Jon Arild Nygård * * Integration of this software requires a license. * - For commercial use, see www.highcharts.com/license * - For non-commercial, see www.highcharts.com/license-eula * * */ /* * * * Imports * * */ import type ColumnPointOptions from '../Column/ColumnPointOptions'; /* * * * Declarations * * */ export interface WordcloudPointOptions extends ColumnPointOptions { /** * The name decides the text for a word. * * @since 6.0.0 * * @product highcharts */ name?: string; /** * The weighting of a word. The weight decides the relative size of a word * compared to the rest of the collection. * * @since 6.0.0 * * @product highcharts */ weight?: number; } /* * * * Default Export * * */ export default WordcloudPointOptions;