I have an upgraded app to use ngUpgrade which is working well so far, but I've run into a problem trying to incorporate Highcharts.
The original app has a different version of highcharts included (an older one for AngularJS).
The new (hybrid remember) app using Angular has a different version of highcharts.
When using them both, I run into an error #16, Highcharts already instantiated, which makes sense.
My question is, how do I avoid this?
If I remove the old highcharts, the old app won't detect the new angular highcharts. If I remove the new one, trying to access the highcharts reference via the window object doesn't work because highcharts can't seem to detect the template for the new angular and has no idea how to use it.
Has anyone put together a hybrid app with highcharts on both parts of the app (old and new)?