Hide "Tell me more" link from toolbar

Stimulsoft Reports.JS discussion
Post Reply
hugo
Posts: 359
Joined: Fri Mar 08, 2013 10:46 am

Hide "Tell me more" link from toolbar

Post by hugo »

Hello,

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

Thanks,
Hugo.
HighAley
Posts: 8431
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Hide "Tell me more" link from toolbar

Post 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.
hugo
Posts: 359
Joined: Fri Mar 08, 2013 10:46 am

Re: Hide "Tell me more" link from toolbar

Post by hugo »

Hello HighAley,

This seems that not works for StiViewer.


Thanks,
Hugo.
Vladimir
Posts: 1462
Joined: Fri Apr 13, 2007 4:05 am
Location: Earth

Re: Hide "Tell me more" link from toolbar

Post 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.
hugo
Posts: 359
Joined: Fri Mar 08, 2013 10:46 am

Re: Hide "Tell me more" link from toolbar

Post by hugo »

Thank you.
HighAley
Posts: 8431
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Hide "Tell me more" link from toolbar

Post by HighAley »

Hello.

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

Thank you.
Post Reply