Last active
February 11, 2016 17:59
-
-
Save ry8806/2ebc24878feae1af0450 to your computer and use it in GitHub Desktop.
C# server-side rendering with Highcharts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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