Check this code, it is always returning "*** ChartBars==null").
Any ideas?
protected override void OnStateChange()
{
if (State==State.DataLoaded)
{
if (ChartBars!=null)
{
ChartBars.Properties.PlotExecutions = ChartExecutionStyle.MarkersOnly;
ChartBars.Properties.IsStableSession = false;
Print("OnStateChange DataLoaded PlotExecutions="+ChartBars.Properties.PlotExecutions+", IsStableSession="+ChartBars.Properties.IsStableSession);
}
else
Print("*** ChartBars==null");
}
}

Comment