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