Ravin Sharma
Ravin Sharma

Reputation: 11

Venn Diagram with Textures using matplotlib

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

Answers (1)

KT.
KT.

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

Related Questions