Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this questionI'm writing a jQuery application to allow analysis of data with the help of visual cues. My data is retrieved via XMLHttpRequest in the form of JSON. The visual cues include histograms, spark lines, and various other graph types. The idea is that the user is able to narrow their data via these various visual views.
My question is thus - aside from the Google Charts API, does there exist a JavaScript way of presenting a Venn Diagram?
Requirement: no Flash.
Canvas is acceptable.
In a word:
Raphael
An alternative to the vector-based Raphael approach would be processing.js which is canvas-based. That said, Raphael is a very nice drawing library as well.
I have been playing around a d3js based solution:
https://github.com/sidoh/venn
Hope it helps!
精彩评论