@highcharts/dashboards
Version:
Highcharts Dashboards framework
41 lines (40 loc) • 607 B
JavaScript
/* *
*
* Cell Content abstract class
*
* (c) 2020-2025 Highsoft AS
*
* License: www.highcharts.com/license
*
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
*
* Authors:
* - Dawid Dragula
*
* */
;
/* *
*
* Class
*
* */
/**
* Represents a cell content in the grid.
*/
class CellContent {
/**
* Creates and renders the cell content.
*
* @param cell
* The cell to which the content belongs.
*/
constructor(cell) {
this.cell = cell;
}
}
/* *
*
* Default Export
*
* */
export default CellContent;