Skip to content

Commit fa24560

Browse files
Tsvetomir-Hrdimodi
authored andcommitted
Update knowledge-base/grid-show-tooltip-on-column-header.md
Co-authored-by: Dimo Dimov <[email protected]>
1 parent b1f9bf3 commit fa24560

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

knowledge-base/grid-show-tooltip-on-column-header.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ To display Tooltip for Grid column headers that are truncated, follow the steps
8484
private IEnumerable<SampleData> MyData = Enumerable.Range(1, 10).Select(x => new SampleData
8585
{
8686
Id = x,
87-
Name = "name " + x,
88-
Team = "team" + x
87+
Name = $"Name {x}",
88+
Team = $"Team {x % 3 + 1}"
8989
});
9090
9191
// Define minimum width requirements for tooltips

0 commit comments

Comments
 (0)