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