Jump to content
Software FX Community

How to enable Annotation toool bar on asp.net


channusatya

Recommended Posts

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

 
Link to comment
Share on other sites

  • 3 weeks later...

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,

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...