{"id":13824912,"url":"https://github.com/sochix/highcharts-export-client","last_synced_at":"2026-01-14T05:10:29.715Z","repository":{"id":144199721,"uuid":"50506249","full_name":"sochix/highcharts-export-client","owner":"sochix","description":"Highcharts Export Server Client for .Net","archived":false,"fork":false,"pushed_at":"2017-03-28T15:34:49.000Z","size":29,"stargazers_count":14,"open_issues_count":2,"forks_count":10,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-02T00:14:40.008Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sochix.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2016-01-27T12:37:09.000Z","updated_at":"2024-05-09T05:39:53.000Z","dependencies_parsed_at":null,"dependency_job_id":"ff9c6043-22e9-4f5e-afd5-09c05b4dfd64","html_url":"https://github.com/sochix/highcharts-export-client","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sochix/highcharts-export-client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sochix%2Fhighcharts-export-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sochix%2Fhighcharts-export-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sochix%2Fhighcharts-export-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sochix%2Fhighcharts-export-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sochix","download_url":"https://codeload.github.com/sochix/highcharts-export-client/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sochix%2Fhighcharts-export-client/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28410260,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T01:52:23.358Z","status":"online","status_checked_at":"2026-01-14T02:00:06.678Z","response_time":107,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-04T09:01:11.708Z","updated_at":"2026-01-14T05:10:29.699Z","avatar_url":"https://github.com/sochix.png","language":"C#","funding_links":[],"categories":["C# #"],"sub_categories":[],"readme":"#highcharts-export-client\n\n[![Build status](https://ci.appveyor.com/api/projects/status/lx03i6374237hj73?svg=true)](https://ci.appveyor.com/project/sochix/highcharts-export-client)\n[![NuGet version](https://badge.fury.io/nu/highcharts-export-client.svg)](https://www.nuget.org/packages/highcharts-export-client/)\n\nHighcharts-export-client is [highcharts-export-server](http://www.highcharts.com/docs/export-module/export-module-overview) API wrapper. \nWith help of this library you can generate fancy charts and export it to png, pdf or svg formats. \n\n:star: If you :heart: library, please star it! :star:\n\n[:uk: English tutorial](http://www.sochix.ru/using-highchart-js-on-a-server-side/)\n[:ru: Russian tutorial](https://habrahabr.ru/post/279515/)\n\n![Highchart chart](https://habrastorage.org/files/33f/df6/a79/33fdf6a791ae4f6982043455fc4e20b4.png)\n\n\n#Installation\n\nInstall via NuGet\n\n```\nPM \u003e Install-Package highcharts-export-client\n```\n\n#Requirements\n\n* In development, you can use default highcharts server [http://export.highcharts.com/](http://export.highcharts.com/).\n\n* In production, library needs a server with installed [highcharts-export-server](http://www.highcharts.com/docs/export-module/setting-up-the-server). Basic installation steps described [here](http://www.highcharts.com/docs/export-module/setting-up-the-server) \u0026 [here](http://withr.me/set-up-highcharts-export-server-on-ubuntu-server-12-dot-04-step-by-step/).\n\n#Usage\n##Draw chart from Highchart Options\n\n![Basic Chart](https://habrastorage.org/files/e03/b5a/884/e03b5a884e7a43ad9b25d65314012444.jpg)\n\nOptions is a highchart options.\n\n```\n\tvar client = new HighchartsClient(_highchartsServer);\n\n\tvar options = new\n\t{\n\t\txAxis = new\n\t\t{\n\t\t\tcategories = new[] { \"Jan\", \"Feb\", \"Mar\" }\n\t\t},\n\t\tseries = new[]\n\t\t{\n\t\t\tnew { data = new[] {29.9, 71.5, 106.4} }\n\t\t}\n\t};\n\n\tvar res = await client.GetChartImageFromOptionsAsync(JsonConvert.SerializeObject(options));\n\n\tFile.WriteAllBytes(\"__imageFromBytes_defaultSettings.png\", res);\n```\n\n##Draw chart from SVG\n\nTo draw a chart from SVG file, use this method:\n```\n\tvar res = await client.GetChartImageFromSvgAsync(_svg);\n```\n\n##Chart settings\nYou can pass settings to library constructor for controlling result file properties.\nFull settings description see on [highcharts-export-server page](http://www.highcharts.com/docs/export-module/export-module-overview).\n\n```\n\tvar settings = new HighchartsSetting\n\t{\n\t\tExportImageType = \"jpg\",\n\t\tScaleFactor = 4,\n\t\tImageWidth = 1500,\n\t\tServerAddress = _highchartsServer\n\t};\n\n\tvar client = new HighchartsClient(settings);\n```\n\n##Async mode\nYou can use library in async mode. In this mode, each call will return a link to image. \nImage will be stored on the server for 15 minutes. See full documentation on [highcharts-export-server](http://www.highcharts.com/docs/export-module/export-module-overview).\n\n```\n\tvar res = await client.GetChartImageLinkFromOptionsAsync(JsonConvert.SerializeObject(options));\n```\n\n#License\n\nThe MIT License\n\nCopyright (c) 2016 Ilya Pirozhenko http://www.sochix.ru/\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsochix%2Fhighcharts-export-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsochix%2Fhighcharts-export-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsochix%2Fhighcharts-export-client/lists"}