Jump to content
Software FX Community

hiding some gallery types


User (Legacy)

Recommended Posts

The Gallery drop-down is a command (CommandId.Gallery) and as such it can be 

customized. For example, you can remove the Radar gallery by doing:

SubCommandCollection galleryCommands =

chart1.Commands[CommandId.Gallery].SubCommands;

int radarIndex = galleryCommands.IndexOf((int) CommandId.Radar);

galleryCommands.RemoveAt(radarIndex);

--

Francisco Padron

www.chartfx.com

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...