https://github.com/rikulo/highcharts
https://github.com/rikulo/highcharts
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/rikulo/highcharts
- Owner: rikulo
- License: mit
- Created: 2017-03-22T10:15:03.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2025-04-21T07:02:12.000Z (about 1 year ago)
- Last Synced: 2025-05-09T00:44:36.565Z (about 1 year ago)
- Language: Dart
- Size: 82 KB
- Stars: 9
- Watchers: 5
- Forks: 5
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# highcharts
highcharts is a wrapper of [Highcharts](https://www.highcharts.com) in Dart.
* [API Reference](https://pub.dev/documentation/rikulo_highcharts/latest/)
* [Git Repository](https://github.com/rikulo/highcharts)
* [Issues](https://github.com/rikulo/highcharts/issues)
## Install from Dart Pub Repository
Include the following in your `pubspec.yaml`:
dependencies:
rikulo_highcharts: any
Then run the [Pub Package Manager](http://pub.dartlang.org/doc) in Dart Editor (Tool > Pub Install). If you are using a different editor, run the command
(comes with the Dart SDK):
pub install
## Usage
Add this lines to the main html of your application (index.html) in the head section.
```
```
You can create a chart object and chart model.
import 'dart:html';
import 'package:rikulo_highcharts/rikulo_highcharts.dart';
main() {
ColumnChart chart = new ColumnChart();
querySelector('#cnt').append(chart.element);
CategoryModel model = new DefaultCategoryModel();
model.setValue('Tokyo', 'Jan', 16);
model.setValue('Tokyo', 'Feb', 6);
model.setValue('Tokyo', 'Mar', 6);
model.setValue('Tokyo', 'Apr', 3);
model.setValue('New York', 'Jan', 18);
model.setValue('New York', 'Feb', 12);
model.setValue('New York', 'Mar', 9);
model.setValue('New York', 'Apr', 14);
chart.model = model;
}
## Features and bugs
Please file feature requests and bugs at the [issue tracker][tracker].
[tracker]: https://github.com/rikulo/highcharts/issues
## Who Uses
* [Quire](https://quire.io) - a simple, collaborative, multi-level task management tool.