Reputation: 11
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?
Upvotes: 0
Views: 245
Reputation: 11440
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)
Upvotes: 0