Highcharts exporting functionality not working in latest release - highcharts

We are developing a SPA with charting features using Highcharts. We are using Highcharts version 4.2.3 installed using npm/jspm with Aurelia framework.
We are facing issues with "exporting" functionality in Highcharts. It is not showing the "Print" options at all. We are including both core highcharts and highcharts/modules/exporting.
We do see both highcharts.js and exporting.js loading just fine.
Also, We came across this thread which looks exactly the issue we are facing. Do we have a solution for this?
Highcharts export functionality is not working
I am positive that Aurelia is using requirejs to load all the dependencies.
Thanks
Senthil S

It has changed the way it is loading the modules.
import Highcharts from "highcharts";
import Exporting from "highcharts/modules/exporting";
Exporting(Highcharts);
Please refer to this thread on Highcharts forum.
http://forum.highcharts.com/post127945.html#p127945
Thanks
Senthil S

**Add **
global.Highcharts = require('highcharts');
require('highcharts/modules/exporting')(global.Highcharts);
**add these two lines in top of your component it will work fine **

Related

Angular Material - Scrolling issue for select component

I am currently working on an app developed using Angular Material (v 9.2.0) and Ionic Capacitor. On iOS devices I am currently facing an issue with mat-select component.
As seen in the screenshot, once opened, the list of options doesn't scroll with the page.
mat-select issue
Is there a way to fix this issue?
Thanks,
Shardul Sane
If you are using matTooltip directive for mat-option try to delete it. This did a trick for me.
upd. After fixing this issue in my code I've found this reference to the issue.

Angular material doesn't work with adminlte UI that attached with ABP 5.6.0

Why angular material does not work with adminlte template I've imported all angular material component by app.module.ts but when I use mat-select it didn't work the design totally crashed such as below Screenshot :
My code is identical to this
another screen shoot
ASPNETZero use ngx-bootstrap rather than angular material, so ngx-bootstrap is already installed and you can use its components, you can find the components her https://valor-software.com/ngx-bootstrap/#/documentation#getting-started

MapboxOptimizedTrips missing from package MapboxSDK.AndroidServices (Xamarin.Android)

I'm currently implementing MapBox in a Xamarin.Android application, I'm looking at the examples from MapBox Github, this one in specific https://github.com/mapbox/mapbox-android-demo/blob/master/MapboxAndroidDemo/src/main/java/com/mapbox/mapboxandroiddemo/examples/mas/OptimizationActivity.java, which I'm translating to C#, but now I'm facing a problem. In this example they use a class called "MapboxOptimizedTrips" which comes from lib 'com.mapbox.services.api.optimizedtrips.v1.MapboxOptimizedTrips'. In Xamarin I have imported all libraries that Xamarin made for MapBox, which is these 3:
MapBoxSDK.Android
MapBoxSDK.AndroidServices
MapBoxSDK.JavaServices
None of these includes the Optimized Trips API related classes. Has anyone faced this issue before?
Screenshot of code
I thought you read and followed this document from Mapbox?
Mapbox Navigation library is kept changing and adding new features
There are two DirectionsRoute class from Mapbox libraries
both DirectionsRoute returned by Mapbox Optimization packages doesn't fit with what NavigationRoute does.
I think you have to go with the way you mentioned, call to API directly. Or wait for Mapbox to evolve their library.
Cheers.

Highcharts Standalone Framework is empty

I downloaded Highcharts using bower. The file bower_components/highcharts/adapters/standalone-framework.js is empty. I also looked at the CDN version at http://code.highcharts.com/adapters/standalone-framework.js - it's also empty. Is this intentional?
Since 4.2 version, the standalone-framework is included in the highcharts.js core.
More information you can find here: http://www.highcharts.com/component/content/article/2-news/198-highcharts-drops-adapters

How to include Image Filters plugin in project

I am currently attempting to use DrewDahlman's Image Filters ( https://github.com/DrewDahlman/ImageFilter/tree/master/iOS ) in my project. This is apparently a Cordova/Phonegap plugin, and I do not know how to import either of these plugins into my project to make DrewDahlman's filters work. All previous attempts of finding online tutorials for getting his plugin to work, or importing Cordova/Phonegap into my project have failed.
All help appreciated.
The main problem is that Drew never updated the plugin to work with PhoneGap/Cordova 3.x+
There seems to be a fork where someone has attempted to do just that, but I have no idea if it is complete: https://github.com/doomboy00/ImageFilter

Resources