Question

My work involves pretty heavy visualization. I have been using D3.js and JavaScript Infovis toolkit for it.

I recently learned about how Dart is the new way of developing web apps.

Q1. Does Dart provide any libraries for doing visualization (Something of the level of D3.js or JavaScript Infovis toolkit) ?

Q2. If I move on to Dart, will I be able to use D3.js / Javascript Infovis toolkit along with Dart ?


Edit:

I found over the internet that we can use Javascript alongwith Dart.

I went through Dart FAQ, but couldn't really find anything related to visualization libraries or D3.js perse.

Was it helpful?

Solution

Thanks to dart:js you can use any js lib. See Using JavaScript from Dart for more details.

OTHER TIPS

You could also use native ports of d3.js to make development easier since you can then write the visualization code in Dart. A good one you should look at is charted

In addition I created a package for the google visualization API.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top