I am to creating venn diagram using matplotlib-venn. I am able to generate the graphs. Is there any possible way to create venn diagrams with textures like matplotlib bar-chart/pie-chart with textures?
Asked
Active
Viewed 199 times
0
-
Use `.set_hatch` on the patches created by the venn function. – ImportanceOfBeingErnest Apr 13 '18 at 10:26
1 Answers
0
This should get you started:
v = venn3(range(1,8))
p = v.get_patch_by_id('110')
p.set_hatch('\\\\')
p.set_edgecolor('black')
p.set_alpha(1.0)

KT.
- 10,815
- 4
- 47
- 71