rikulo_highcharts 1.0.0+2 copy "rikulo_highcharts: ^1.0.0+2" to clipboard
rikulo_highcharts: ^1.0.0+2 copied to clipboard

outdated

highcharts is a porting of highcharts in Dart.

highcharts #

highcharts is a wrapper of Highcharts in Dart.

Install from Dart Pub Repository #

Include the following in your pubspec.yaml:

dependencies:
  rikulo_highcharts: any

Then run the Pub Package Manager 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.

<script src="your-js-lib/highcharts.js"></script>

You can create a chart object and chart model.

  import 'dart:html';
import 'package:rikulo_highcharts/highcharts.dart';

main() {
  ColumnChart chart = new ColumnChart();
  querySelector('#cnt').append(chart.element);

  CategoryModel<String, String> model = new DefaultCategoryModel<String, String>();
  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.

Who Uses #

  • Quire - a simple, collaborative, multi-level task management tool.
2
likes
0
pub points
62%
popularity

Publisher

verified publisherquire.io

highcharts is a porting of highcharts in Dart.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

js

More

Packages that depend on rikulo_highcharts