I want to ask that I have Java plugin application. Now, I want to implement n-dimentional Venn Diagram by specifically mentioning the percentage of overlapped and seperate regions. I don't need boolean implementation of Venn diagram.
One of the implementation in Java, I have found from http://www.eulerdiagrams.org/eulerAPE/#GettingStarted. But, it is limited to exactly 3 datasets. I want to compare flexible number of datasets by using venn diagram, in such a way that I will provide following inputs:
- Number of data sets like 2. Suppose A and B are datasets which will have 3 regions in the venn diagram.
- Percentage area of each region in Venn diagram
- Colors of each region
- Labels of each region
Can any knows how can I implement it? Is there any source code available in Java?
Secondly, I can adopt alternative way as well, which is to use Html/Javascript implementation of n-dimensional Venn Diagram. I have found multiple implementations of n-dimensional Venn Diagram Javascript/Html code like https://github.com/benfred/venn.js etc
But, major challenge becomes to integrate source code Java plugin with Html/Javascript. Can you please let me know is there any way to integrate Javascript/Html Venn diagram implementation in my Java plugin?
Please let me know about some solution.