Visualization with Darth?

My work involves a pretty heavy visualization. I used D3.js and the JavaScript Infovis toolkit for it.

I recently learned how Dart is a new way to develop web applications.

Q1. Does Dart provide any visualization libraries (something like D3.js or JavaScript Infovis toolkit )?

Q2. If I go to Dart, can I use the D3.js / JavaScript Infovis toolkit with Dart?


Edit:

I found over the Internet that we can use Javascript with Darth .

I looked through the Dart FAQ , but could not find anything related to the visualization libraries or D3.js perse.

+4
source share
3 answers

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

+3
source

You can also use the native d3.js ports to simplify development, since you can write visualization code in Dart. The good one you should pay attention to is charted

+2
source
+1

Source: https://habr.com/ru/post/1524128/


All Articles