This chart comes from an MDDDL sample.
The chart has properties "RightArea" and "PlotArea" and the sample shows some things that can be cone with them.
Code will look different in C#, but this MDDDL sample should point you in the right directions.
Code:
// PIE CHART ---------------------------------------------------------------
\chart(Pie2D)
[
Height = 200
Width = 381
LineFormat.Visible = true
FillFormat.Color = Ivory
]
{
\plotarea
[
TopPadding = 10
LeftPadding = 10
RightPadding = 10
BottomPadding = 10
]
\rightarea [VerticalAlignment = Center]
{
\legend
[
Format.Font.Name = "Arial"
Format.Font.Size = "10"
LineFormat.Width = 0.25
]
}
\xaxis
[
LineFormat.Width = 0.25
TickLabels.Font.Name = "Arial"
TickLabels.Font.Size = 10
]
\yaxis
[
LineFormat.Width = 0.25
MajorGridlines.LineFormat.Width = 0.25
TickLabels.Font.Name = "Arial"
TickLabels.Font.Size = 10
TickLAbels.Format = "#"
]
\series
[
Name = "2000"
LineFormat.Visible = true
FillFormat.Color = 0xFF9999FF
]
{6846, 9464, 5838, 1681}
\xvalues
{
"1st Quarter", "2nd Quarter", "3rd Quarter", "4th Quarter"
}
}