I'm still pretty green when it comes to programming and C#, and I'm a little unclear with it comes to using the "this" syntax.
What I'm trying to do is to add a new DataSeries for the Secondary bar object.
So for example:
protected override void Initialize()
{
Add(PeriodType.Day,1);
}
myDataSeries = new DataSeries(this);
-Nick

Comment