Under the section" Get the number of draw objects on a chart
protected override void OnBarUpdate()
{
if (DrawObjects.Count == 3)
{
// Do something
}
}
If you're trying to get the number of draw objects on a chart, why is it set to 3?
How do you get the number of draw objects on a chart if you don't know how many are on the chart?

Comment