channusatya 0 Report post Posted June 10, 2010 Hi, i have written to to add and enable the Annotation toool bar. but the tool bar is added but it is not enabled i.e: i am not ablt o select andd Annotations. from tool bar. Annotations annots = new Annotations(); annots.EnableUI = true;annots.ToolBar.Visible = true;annots.Visible = true; ; Chart2.Extensions.Add(annots) and alos how toread the Annotations from chart --Satya Quote Share this post Link to post Share on other sites
RandyJ 0 Report post Posted June 29, 2010 Hi, Please try the following code. I have used it on my side and it works as expected: Annotations annots = new Annotations();annots.EnableUI = true; chart1.Extensions.Add(annots);annots.ToolBar.Visible = true; chart1.ToolBar.Visible = true; Does it work at your end? Regards, Quote Share this post Link to post Share on other sites