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