@highcharts/dashboards
Version:
Highcharts Dashboards framework
42 lines (41 loc) • 626 B
JavaScript
/* *
*
* Cell Renderer 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
*
* */
/**
* Renderer class that initialize all options per column.
*/
class CellRenderer {
/**
* Constructs the CellRenderer instance.
*
* @param column
* The column of the cell.
*
*/
constructor(column) {
this.column = column;
}
}
/* *
*
* Default Export
*
* */
export default CellRenderer;