How to use HighCharts dart library in Flutter app?

2,026

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.

Share:
2,026
grepLines
Author by

grepLines

Updated on December 03, 2022

Comments

  • grepLines
    grepLines over 1 year

    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!