Armysniper Posted January 22, 2008 Report Share Posted January 22, 2008 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. Quote Link to comment Share on other sites More sharing options...
maximop Posted January 22, 2008 Report Share Posted January 22, 2008 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. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
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.