19 lines
425 B
C#
19 lines
425 B
C#
namespace Microsoft.Research.DynamicDataDisplay
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for LineLegendItem.xaml
|
|
/// </summary>
|
|
public partial class LineLegendItem : LegendItem
|
|
{
|
|
public LineLegendItem()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public LineLegendItem(Description description) : base(description)
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|