This repository was archived by the owner on May 3, 2023. It is now read-only.
  
  
  
  
  
Description
In the Highcharts configuration there are objects that accept an events property. Example running some callback after the chart is loaded (https://api.highcharts.com/highcharts/chart.events.load).
chart: {
  margin: [0,0,0,0],
  events: {
    load: function() {
      console.log("chart loaded!");
    }
  }
},When I tried this out I got a console log with the following message:
Handler for events HIEvents not implemented
After digging into the code I found out that the warning is coming from here:
  
  
    
        
          |  | console.log('Handler for', schemaKey, schema[schemaKey], 'not implemented'); | 
    
   
 
I am right in assuming that this functionality is not yet available, or should I be setting this up differently?
I am working with NativeScript Vue - NS 7; Package version 0.1.0.