If so, can you please point me to an example?
I have been trying to do the following
#region Variables
private DataSeries highRef;
protected override void Initialize()
{
highRef = new DataSeries(this) ;
}
#region Properties
[Browsable(false)]
[XmlIgnore()]
public DataSeries HighRef
{
get { return highRef; }
set { highRef.Set(Values); }
}
Thanks,
ATC

Comment