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