Search results
6 paź 2023 · Use the client ASPxClientHint.Show (ASPxClientHintOptions options) method to show a hint at the specified position. JS ASPxClientHint.Show('.hintArea', { title: 'My Title', content: 'My Content', x: 240, y: 45 });
Most of DevExpress WinForms controls use the same mechanism to display tooltips (hints) - the ToolTipController component. This component manages hints for all controls in an application, and allows you to customize the tooltip behavior and appearance.
9 mar 2021 · Hi, Thank you for the sample project. I reproduced this behavior. We need some time to research it. In the meantime, you can work around the issue by setting ToolTipLocation to Fixed: C# var args = toolTipController1.CreateShowArgs(); args.Title = "Character is not acceptable"; args.ToolTip = "Please enter the correct number.";
9 wrz 2022 · Tooltips can be managed by using the ToolTipController component, which provides the hint settings. It allows you to customize hint appearances, specify icons displayed in hints and set the time interval between invoking/hiding hints, etc.
To display a hint at a precise position on the browser window without targeting any UI element on a web page, use the ASPxClientHintOptions.x and ASPxClientHintOptions.y properties. In this case, the position property specifies the hint position relative to the defined x/y coordinates.
6 paź 2023 · Use one of the following techniques to specify the Hint control’s content and title: Use the Content, ContentAttribute, Title, and TitleAttribute properties. Use the client Show () method. Use the client Register () method. Use the Content, ContentAttribute, Title, and TitleAttribute properties.
6 cze 2016 · I needed to show some extra information apart from traditional x and y argument-values using series point's {HINT} pattern (Hospital Admissions: 130, (65%)) - as per the image. Now, I need to show it in the bar itself.