Intentando actualizar el valor del componente dentro del controlador de eventos mouseOver :
import * as Highcharts from 'highcharts'; export class AssetDetailComponent { highcharts = Highcharts; highchartsTooltip: string = ''; chartOptions: Highcharts.Options = {}; constructor() { this.chartOptions = { series: [{ point: { events: { mouseOver: this.onChartMouseOver } } }] }; } onChartMouseOver(event: any) { this.highchartsTooltip = `1234`; }; } Sin embargo, el valor del componente no se actualiza y, en su lugar, intentar usar un método de componente arroja un error not a function . Desafortunadamente, no encontré mucha documentación sobre este tema: toda ayuda es muy apreciada. ¡Gracias!