Hello,
I’m currently playing with PSU and the v3 framework and i have an issue where the Time New Roman font is applied.
My dashbaord is rather simple and i used one of documentation example.
New-UDDashboard -Title "Dashboard" -Content {
$Data = @(
@{Dessert = 'Frozen yoghurt'; Calories = 159; Fat = 6.0; Carbs = 24; Protein = 4.0}
@{Dessert = 'Ice cream sandwich'; Calories = 159; Fat = 6.0; Carbs = 24; Protein = 4.0}
@{Dessert = 'Eclair'; Calories = 159; Fat = 6.0; Carbs = 24; Protein = 4.0}
@{Dessert = 'Cupcake'; Calories = 159; Fat = 6.0; Carbs = 24; Protein = 4.0}
@{Dessert = 'Gingerbread'; Calories = 159; Fat = 6.0; Carbs = 24; Protein = 4.0}
)
New-UDTable -Data $Data
}
I’ve tried with playing with the theme part but without success
$Theme = @{
Typography = @{
fontFamily ='"Segoe UI"'
}
}
This theme is changing the helvetica font correctly but not the Time New Roman.
Can someone help me with some pointer on where i can achieve font consistency ?
Thanks !