Skip to content

Instantly share code, notes, and snippets.

@ry8806
Last active February 11, 2016 17:59
Show Gist options
  • Select an option

  • Save ry8806/2ebc24878feae1af0450 to your computer and use it in GitHub Desktop.

Select an option

Save ry8806/2ebc24878feae1af0450 to your computer and use it in GitHub Desktop.
C# server-side rendering with Highcharts
// Build the chart with our options
var chart = Highcharts.Chart(options);
var svg = chart.getSVGForExport();
// Post the svg to our server (using jQuery)
$.post("http://myserver.com/api/savesvg", svg, function(result){
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment