This document consists of the following sections.
The Simple diagram is intended to plot series of the following view types
A typical example of a Simple diagram is shown in the following image.

The Pie and Doughnut series are useful when it is necessary to compare the percentage values of different point arguments in the same series. So, the points of a series are distributed along the drawn circle's radius, which is considered to be 100%. Each slice of this circle represents a portion of the whole series that each point's value represents.
The Pie and Doughnut series view types are almost identical, the only exception being that the Doughnut series has a hole in its center.
The following image demonstrates series of both types plotted in the same diagram: the Pie series on the left, and the Doughnut on the right.

For example, a funnel chart can represent a sales funnel that indicates sale process stages, including potential loses at each stage. This helps to identify weak points in an organization's current sales processes, and indicate possible bottlenecks within the data.
The funnel displays a process that starts at 100%, with subsequent stages having a progressively lower percentage. The data point with the greatest value in the collection is 100% (the top of the funnel), which represents the widest polygon. The next series point value is represented by a smaller polygon, whose top width represents the value's ratio to the previous point value. This continues up until the last point, which has a bottom width equal to its top width.
The following image demonstrates a typical Funnel chart.

To access the diagram's options at design time, click your chart, to select it. Then, in the Properties window, expand the ChartControl.Diagram property.

At runtime, cast your instance of the Diagram object to the Simple Diagram type.
C# |
SimpleDiagram diagram = chart.Diagram as SimpleDiagram;
if (diagram != null) {
diagram.Dimension = 2;
diagram.LayoutDirection = LayoutDirection.Vertical;
}
|
VB |
Dim diagram As SimpleDiagram = TryCast(chart.Diagram, SimpleDiagram)
If diagram IsNot Nothing Then
diagram.Dimension = 2
diagram.LayoutDirection = LayoutDirection.Vertical
End If
|
You can see the following options, specific for the Simple diagram type: SimpleDiagram.Dimension and SimpleDiagram.LayoutDirection properties. Both these properties determine the layout of multiple Pie, Doughnut or Funnel series within a single diagram. They are briefly described below. For more detailed information about them, refer to these properties' descriptions.
In addition, you can provide the equal size for all pies (doughnuts) series on a diagram by their minimal size using the SimpleDiagram.EqualPieSize property.
The following images demonstrate the comparison of appearances of diagrams with and without using this feature.