{"id":19197536,"url":"https://github.com/rikulo/highcharts","last_synced_at":"2025-05-09T00:44:41.913Z","repository":{"id":56838240,"uuid":"85813587","full_name":"rikulo/highcharts","owner":"rikulo","description":null,"archived":false,"fork":false,"pushed_at":"2025-04-21T07:02:12.000Z","size":84,"stargazers_count":9,"open_issues_count":3,"forks_count":5,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-05-09T00:44:36.565Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dart","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/rikulo.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2017-03-22T10:15:03.000Z","updated_at":"2025-04-21T07:02:14.000Z","dependencies_parsed_at":"2025-04-18T11:00:21.117Z","dependency_job_id":null,"html_url":"https://github.com/rikulo/highcharts","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rikulo%2Fhighcharts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rikulo%2Fhighcharts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rikulo%2Fhighcharts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rikulo%2Fhighcharts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rikulo","download_url":"https://codeload.github.com/rikulo/highcharts/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253171212,"owners_count":21865283,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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-11-09T12:17:13.626Z","updated_at":"2025-05-09T00:44:41.894Z","avatar_url":"https://github.com/rikulo.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# highcharts\n\nhighcharts is a wrapper of [Highcharts](https://www.highcharts.com) in Dart.\n\n* [API Reference](https://pub.dev/documentation/rikulo_highcharts/latest/)\n* [Git Repository](https://github.com/rikulo/highcharts)\n* [Issues](https://github.com/rikulo/highcharts/issues)\n\n## Install from Dart Pub Repository\n\nInclude the following in your `pubspec.yaml`:\n\n    dependencies:\n      rikulo_highcharts: any\n\nThen run the [Pub Package Manager](http://pub.dartlang.org/doc) in Dart Editor (Tool \u003e Pub Install). If you are using a different editor, run the command\n(comes with the Dart SDK):\n\n    pub install\n\n## Usage\n\nAdd this lines to the main html of your application (index.html) in the head section.\n```\n\u003cscript src=\"your-js-lib/highcharts.js\"\u003e\u003c/script\u003e\n```\n\nYou can create a chart object and chart model.\n\n    import 'dart:html';\n    import 'package:rikulo_highcharts/rikulo_highcharts.dart';\n\n    main() {\n      ColumnChart chart = new ColumnChart();\n      querySelector('#cnt').append(chart.element);\n\n      CategoryModel\u003cString, String\u003e model = new DefaultCategoryModel\u003cString, String\u003e();\n      model.setValue('Tokyo', 'Jan', 16);\n\t  model.setValue('Tokyo', 'Feb', 6);\n\t  model.setValue('Tokyo', 'Mar', 6);\n\t  model.setValue('Tokyo', 'Apr', 3);\n\n\t  model.setValue('New York', 'Jan', 18);\n\t  model.setValue('New York', 'Feb', 12);\n\t  model.setValue('New York', 'Mar', 9);\n\t  model.setValue('New York', 'Apr', 14);\n\n\t  chart.model = model;\n    }\n\n## Features and bugs\n\nPlease file feature requests and bugs at the [issue tracker][tracker].\n\n[tracker]: https://github.com/rikulo/highcharts/issues\n\n## Who Uses\n\n* [Quire](https://quire.io) - a simple, collaborative, multi-level task management tool.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frikulo%2Fhighcharts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frikulo%2Fhighcharts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frikulo%2Fhighcharts/lists"}