Skip to content

Instantly share code, notes, and snippets.

View tim545's full-sized avatar

Tim tim545

  • Australia
View GitHub Profile
@tim545
tim545 / gist:1e10d066eeec6694ea08a1322f857f00
Created September 14, 2017 00:06 — forked from philfreo/gist:0a4d899de4257e08a000
4 different ways to save a Highcharts chart as a PNG (with and without a server)
// Method 1: simply use Highcharts built-in functionality (SVG -> Highcharts server -> PNG)
// Downside: won't work in webview native apps that don't handle the form response
highcharts.exportChart({
filename: filename
});