Skip to content

Commit

Permalink
more font stuff with github actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
natekford committed Feb 1, 2024
1 parent eaa31b7 commit 03060c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/NarrativeCharts.Skia/SKChartDrawer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ public SKChartDrawer()
/// <inheritdoc />
protected override SKContext CreateCanvas(NarrativeChartData chart, YMap yMap)
{
Console.WriteLine($"Axis type face: {AxisLabelFont.Typeface.FamilyName}");
Console.WriteLine($"Point type face: {PointLabelFont.Typeface.FamilyName}");
Console.WriteLine($"Default type face: {SKTypeface.Default.FamilyName}");
Console.WriteLine($"Axis type face: {AxisLabelFont?.Typeface?.FamilyName}");
Console.WriteLine($"Point type face: {PointLabelFont?.Typeface?.FamilyName}");
Console.WriteLine($"Default type face: {SKTypeface.Default?.FamilyName}");
var dims = GetDimensions(yMap);
// Default color type is Rgba8888 which is 32 bits, Rgb565 is 16 bits
// I don't use transparency in any of the drawing and the colors I use for
Expand Down

0 comments on commit 03060c0

Please sign in to comment.