The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
I tried all the font properties in docking manager. But the font in the tab control of docking manager does not change. I try to disable theme and still no success.
I would like to make the font larger to make it look nicer.
UNUnknown Syncfusion Team December 6, 2019 09:45 AM UTC
Hi Alex,
Thanks for contacting Syncfusion support.
We have analyzed your query regarding “To make the font of tab item In document container look larger”. You can change the font size and font family of the tab control using the ActiveTabFont and TabFont property, as shown in following code.
C#:
dockingManager1.DocumentWindowSettings.ActiveTabFont = new Font("Arial",14);
dockingManager1.DocumentWindowSettings.TabFont = new Font("Arial", 10);
Please refer following sample representing the same