generate_venn_chart
Create Venn diagrams to visualize relationships between sets, highlighting intersections and differences. Ideal for analyzing commonalities and distinctions among groups with clear, customizable visuals.
Instructions
Generate a Venn diagram to visualize the relationships between different sets, showing how they intersect and overlap, such as the commonalities and differences between various groups.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | Data for venn chart, such as, [{ label: 'A', value: 10, sets: ['A'] }, { label: 'B', value: 20, sets: ['B'] }, { label: 'C', value: 30, sets: ['C'] }, { label: 'AB', value: 5, sets: ['A', 'B'] }]. | |
height | No | Set the height of chart, default is 400. | |
style | No | Custom style configuration for the chart. | |
theme | No | Set the theme for the chart, optional, default is 'default'. | default |
title | No | Set the title of chart. | |
width | No | Set the width of chart, default is 600. |