Files
NKC/NKC_WF/WebUserControls/cmp_BatchStatsPlot.ascx.cs
2024-03-20 07:18:34 +01:00

59 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace NKC_WF.WebUserControls
{
public partial class cmp_BatchStatsPlot : System.Web.UI.UserControl
{
#region Public Properties
public string Legend
{
get
{
return hfLegend.Value;
}
set
{
hfLegend.Value = value;
}
}
public string PlotType
{
get
{
return hfPlotType.Value;
}
set
{
hfPlotType.Value = value;
}
}
public int ShowLast
{
get
{
int answ = 0;
int.TryParse(hfShowLast.Value, out answ);
return answ;
}
set
{
hfShowLast.Value = $"{value}";
}
}
#endregion Public Properties
#region Protected Methods
#endregion Protected Methods
}
}