1. Feature Adoption Analysis
Product ManagerBackground
A product manager wants to show how many users interact with three core features: Search, Filters, and Export.
Problem
The team needs to see the exact overlap of users utilizing multiple features to decide on integration improvements.
How to use
Enter the user counts for Search, Filters, and Export, along with their intersections, into the Sets Data JSON field, then set the title to 'Feature Adoption'.
{
"sets": [
{ "name": "Search", "size": 30 },
{ "name": "Filters", "size": 25 },
{ "name": "Export", "size": 20 }
],
"intersections": {
"Search+Filters": 10,
"Search+Export": 6,
"Filters+Export": 5,
"Search+Filters+Export": 2
}
}Outcome
An SVG Venn diagram displaying three overlapping circles with feature names, counts, and percentage breakdowns for each intersection.