Jump to content
Software FX Community

Restricting Buttons on Chart Toolbar


Armysniper

Recommended Posts

How can I restrict the features of the tool bar on the chart? I really only want them to be able to copy the chart or be able to print it. That is it. Is there a configuration or properties setting I can do to remove the other customization features? Also, is there support to export as Excel document with the chart and data included? Did not see that in there.

Link to comment
Share on other sites

You can customize the ChartFX toolbar by removing some of the default commands provided. The following will remove the first command from the chart's toolbar:

if (!Page.IsPostBack)

{

Chart1.ToolBar.Visible = true;

Chart1.ToolBar.RemoveAt(0);

}

In regards to your Excel question, unfortunately, we currently do not support exporting to Excel.

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...