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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...