Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visualization with Dart?

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.

like image 352
Amit Tomar Avatar asked Jan 28 '14 17:01

Amit Tomar


1 Answers

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

like image 67
Alexandre Ardhuin Avatar answered Oct 06 '22 08:10

Alexandre Ardhuin