@highcharts/dashboards
Version:
Highcharts Dashboards framework
46 lines (45 loc) • 842 B
JavaScript
/* *
*
* Cell Content Pro abstract class
*
* (c) 2020-2025 Highsoft AS
*
* License: www.highcharts.com/license
*
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
*
* Authors:
* - Dawid Dragula
*
* */
;
import CellContent from '../../Core/Table/CellContent/CellContent.js';
/* *
*
* Class
*
* */
/**
* Represents a cell content in the grid.
*/
class CellContentPro extends CellContent {
/**
* Creates and renders the cell content.
*
* @param cell
* The cell to which the content belongs.
*
* @param renderer
* Renderer that allows print content (inputs, selects, etc.)
*/
constructor(cell, renderer) {
super(cell);
this.renderer = renderer;
}
}
/* *
*
* Default Export
*
* */
export default CellContentPro;