Hide or uncheck "Create label"
Posted: Wed Oct 31, 2007 4:10 am
Recently you've added in designer the "Create label" checkbox. Is it possibile to hide it or to make it default to unchecked (from code)?
Thanks.
Thanks.
Reporting tool and data analytics tools for creating reports and dashboards in ASP.NET, ASP.NET MVC, .NET Core, Blazor, Angular, PHP, Python, WPF, JavaScript, and Java applications.
https://forum.stimulsoft.com/
Code: Select all
StiDictionaryPanelService service = StiDictionaryPanelService.GetService();
service.ShowCreateLabel = false;
Code: Select all
StiSettings.Load();
StiSettings.Set("StiDesigner", "CreateLabel", false);
StiSettings.Save();