 
	
		Hello,
To work around this issue, create a custom TokenizedTextBlockElement and override the MinSize:
class TwTokenizedTextBlockElement : TokenizedTextBlockElement
{
     public override Size MinSize
     {
         get
         {
             Size s = (Size)this.GetValue(MinSizeProperty);
             return new Size(s.Width, TelerikDpiHelper.ScaleInt(s.Height, this.DpiScaleFactor));
         }
         set
         {
             base.MinSize = value;
         }
     }
 }I hope this helps.
Regards,
 
Nadya
 Progress Telerik
    
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.
