I am looking to get some info on the objects rendered on one of my charts .. I can do the following .. but what other info is stored and how to list all stored data for each onject ?
protected override void OnRender(ChartControl chartControl, ChartScale chartScale)
{
base.OnRender(chartControl, chartScale);
IList<Gui.NinjaScript.IChartObject> myObjects = ChartPanel.ChartObjects;
foreach (Gui.NinjaScript.IChartObject thisObject in myObjects)
{
if(thisObject.Name == "someobject name){
Print(String.Format("name :{0} type: {1}", thisObject.Name, thisObject.GetType() ));
}
}
}

Comment