using System.ComponentModel;
using System.Drawing;
using System.Drawing.Design;
using System.Windows.Forms;
namespace DevComponents.DotNetBar.Charts.Style
{
    /// 
    /// Represents a PieGridLineVisualStyle.
    /// 
    [TypeConverter(typeof(VisualStylesConverter))]
    public class PieGridLineVisualStyle : ChartLineVisualStyle
    {
        #region Copy
        /// 
        /// Returns the copy of the style.
        /// 
        /// Copy of the style.
        public new PieGridLineVisualStyle Copy()
        {
            PieGridLineVisualStyle style = new PieGridLineVisualStyle();
            CopyTo(style);
            return (style);
        }
        #endregion
        #region CopyTo
        /// 
        /// Returns the copy of the style.
        /// 
        /// Copy of the style.
        public void CopyTo(PieGridLineVisualStyle style)
        {
            base.CopyTo(style);
        }
        #endregion
    }
}