@highcharts/dashboards
Version:
Highcharts Dashboards framework
70 lines (69 loc) • 1.78 kB
JavaScript
/* *
*
* (c) 2009-2026 Highsoft AS
*
* Integration of this software requires a license.
* - For commercial use, see www.highcharts.com/license
* - For non-commercial, see www.highcharts.com/license-eula
*
*
* Authors:
* - Sophie Bremer
*
* */
;
import HighchartsComponent from '../Components/HighchartsComponent/HighchartsComponent.js';
import KPIComponent from '../Components/KPIComponent/KPIComponent.js';
import NavigatorComponent from '../Components/NavigatorComponent/NavigatorComponent.js';
/* *
*
* Functions
*
* */
/**
* Connects Highcharts core with the Dashboard plugin.
*
* @param {Highcharts} highcharts
* Highcharts core to connect.
*/
function connectHighcharts(highcharts) {
HighchartsComponent.charter = highcharts;
KPIComponent.charter = highcharts;
NavigatorComponent.charter = highcharts;
}
/**
* Callback function of the Dashboard plugin.
*
* @param {Dashboards.PluginHandler.Event} e
* Plugin context provided by the Dashboard.
*/
function onRegister(e) {
const { ComponentRegistry } = e;
ComponentRegistry.registerComponent('Highcharts', HighchartsComponent);
ComponentRegistry.registerComponent('KPI', KPIComponent);
ComponentRegistry.registerComponent('Navigator', NavigatorComponent);
}
/**
* Callback function of the Dashboard plugin.
*
* @param {Dashboard.PluginHandler.Event} e
* Plugin context provided by the Dashboard.
*/
// eslint-disable-next-line @typescript-eslint/no-unused-vars
function onUnregister(e) {
}
/* *
*
* Default Export
*
* */
const HighchartsCustom = {
connectHighcharts
};
const HighchartsPlugin = {
custom: HighchartsCustom,
name: 'Highcharts.DashboardsPlugin',
onRegister,
onUnregister
};
export default HighchartsPlugin;