| |||||
Introducing SharpPlot Your First Chart Recent Updates Tutorials General Tutorials Chart Tutorials Reference SharpPlot Class Properties Methods Structures Enumerations Style examples Glossaries Active Charts VectorMath Class DBUtil Class Get SharpPlot Download SharpPlot Buying SharpPlot SharpPlot Support Upgrading from GraPL Release notes |
Home > Sample Charts > VennDiagram VennDiagramThe Venn diagram shows a diagrammatic view of Set membership data, using the correct proportions for the simply case with 2 populations (and 1 overlap) and a simple diagram with intersecting circles for the 3-area case. SharpPlot sp = new SharpPlot; sp.SetMargins(12,12,4,4); sp.VennDiagramStyle = VennDiagramStyles.Filled; sp.DrawVennDiagram(new int[] {27,19,8}); Worked Examples |