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

DrawBottom() private method

Draws the bottom of the pie slice.
private DrawBottom ( Graphics graphics ) : void
graphics System.Drawing.Graphics /// Graphics used to draw the pie slice. ///
return void
        internal void DrawBottom(Graphics graphics)
        {
            graphics.FillPie(m_brushSurface, m_boundingRectangle.X, m_boundingRectangle.Y + m_sliceHeight, m_boundingRectangle.Width, m_boundingRectangle.Height, m_startAngle, m_sweepAngle);
            graphics.DrawPie(m_pen, m_boundingRectangle.X, m_boundingRectangle.Y + m_sliceHeight, m_boundingRectangle.Width, m_boundingRectangle.Height, m_startAngle, m_sweepAngle);
        }