grepLines
grepLines

Reputation: 2558

How to use HighCharts dart library in Flutter app?

I'm looking into using HighCharts Dart library to build visualisation for my flutter app. Base on the example here, I'm not too sure how to integrate it into the flutter app.

After looking around, it seems like there isn't chart library for flutter app, other than building from scratch. Do you know if this issue has been addressed or still in progress?

Thanks for your time!

Upvotes: 3

Views: 2584

Answers (1)

triunenature
triunenature

Reputation: 671

I know your looking for direct integration, but you can use the node export server.

https://www.highcharts.com/blog/news/256-introducing-the-highcharts-node-js-export-server/

How I use it is, I post to highchairs on the server, get the SVG, and display that in flutter. It's not as nice as local, but it works for a good number of use cases.

The same technique can be applied using any server-side SVG chart renderer.

Upvotes: 1

Related Questions