UNPKG

@highcharts/dashboards

Version:
42 lines (41 loc) 626 B
/* * * * 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 * * */ 'use strict'; /* * * * 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;