template: `<a><span v-bind:style="{ color: 'red', fontSize: '15' + 'px' }">
{{ShipCity}}
</span></a>`,
|
Hi Alex,
Thanks for your update.
Query : SyncFusion determines if a tooltip should be shown not by if the text actually has ellipses, but by if it would have ellipses with the standard SyncFusion font size.In EJ2 Grid, setting the clipMode as "EllipsisWithTooltip" to a column shows a tooltip for the cell which contents width exceeds the column width. Tooltip is not depends on the fontsize of cell content.
We have changed the font size of the content in column template and the ellipsisWithTooltip is working fine at our end. please refer the below code example and sample for more information.
{{ShipCity}}
If you still face the same problem, please get back to us with the below details.
- Share the full grid code.
- Share the versions of syncfusion controls you have used in package.JSON file
- share the issue reproduced sample which is very helpful for us.
The above details are highly requested to validate further and provide the solution ASAP.Regards,Rajapandiyan S
<style>
body {
font-size: 18px;
}
.e-control.e-grid {
font-size: inherit;
}
.e-control.e-grid * {
font-size: inherit;
}
</style>
|