Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does there exist a jQuery plugin or JavaScript library that allows Venn Diagram presentation? [closed]

I'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.

like image 945
knowncitizen Avatar asked Mar 23 '10 19:03

knowncitizen


3 Answers

In a word:

Raphael

like image 104
jvenema Avatar answered Oct 12 '22 20:10

jvenema


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.

like image 41
awesomo Avatar answered Oct 12 '22 21:10

awesomo


I have been playing around a d3js based solution:

https://github.com/sidoh/venn

Hope it helps!

like image 41
Amit Tikoo Avatar answered Oct 12 '22 19:10

Amit Tikoo