GridHyperlinkColumn Class
A hyperlink column in a GridDashboardItem.
Namespace: DevExpress.DashboardCommon
Assembly: DevExpress.Dashboard.v21.2.Core.dll
Declaration
Remarks
A hyperlink column allows you to display hyperlinks in the Grid dashboard item or use a Uri pattern to create hyperlinks for displayed values.
The following code snippet creates the Hyperlink column:
var grid = new GridDashboardItem();
grid.DataSource = dataSource;
var gridHyperlink = new GridHyperlinkColumn();
gridHyperlink.UriDataMember = "Product";
gridHyperlink.DisplayValue = new Dimension("Product");
gridHyperlink.UriPattern = "https://www.google.com/search?q={0}";
grid.Columns.Add(gridHyperlink);
Related GitHub Examples
The following code snippets (auto-collected from DevExpress Examples) contain references to the GridHyperlinkColumn class.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.