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