Page 1 of 1

Hide "Tell me more" link from toolbar

Posted: Thu Nov 26, 2015 12:55 am
by hugo
Hello,

How to hide "Tell me more" link from toolbar ?

Thanks,
Hugo.

Re: Hide "Tell me more" link from toolbar

Posted: Thu Nov 26, 2015 8:30 am
by HighAley
Hello, Hugo.

You could use next option to hide this link from tooltips.

Code: Select all

var options = new Stimulsoft.Designer.StiDesignerOptions();
            options.appearance.showTooltipsHelp = false;

var designer = new Stimulsoft.Designer.StiDesigner(options, "StiDesigner", false);
Thank you.

Re: Hide "Tell me more" link from toolbar

Posted: Thu Nov 26, 2015 9:08 am
by hugo
Hello HighAley,

This seems that not works for StiViewer.


Thanks,
Hugo.

Re: Hide "Tell me more" link from toolbar

Posted: Thu Nov 26, 2015 12:40 pm
by Vladimir
Hello,

At the moment, there is no separate option. You can hide the hints of the viewer by the following option:

Code: Select all

var options = new Stimulsoft.Viewer.StiViewerOptions();
options.appearance.showTooltips = false;

var viewer = new Stimulsoft.Viewer.StiViewer(options, "StiViewer", false);
Thank you.

Re: Hide "Tell me more" link from toolbar

Posted: Thu Nov 26, 2015 6:53 pm
by hugo
Thank you.

Re: Hide "Tell me more" link from toolbar

Posted: Fri Nov 27, 2015 6:00 am
by HighAley
Hello.

We are always glad to help you.
Let us know if you need additional help.

Thank you.