System.Drawing.PieChart.PieSlice.DrawHiddenPeriphery C# (CSharp) Method

DrawHiddenPeriphery() private method

Draws hidden outer periphery of the pie slice.
private DrawHiddenPeriphery ( Graphics graphics ) : void
graphics System.Drawing.Graphics /// Graphics used to draw the pie slice. ///
return void
        internal void DrawHiddenPeriphery(Graphics graphics)
        {
            PeripherySurfaceBounds[] peripherySurfaceBounds = GetHiddenPeripherySurfaceBounds();
            foreach (PeripherySurfaceBounds surfaceBounds in peripherySurfaceBounds) {
                DrawCylinderSurfaceSection(graphics, m_pen, m_brushSurface, surfaceBounds.StartAngle, surfaceBounds.EndAngle, surfaceBounds.StartPoint, surfaceBounds.EndPoint);
            }
        }