Show all labels in chart?

Lowering the fontsize might work, it can be done using the -Options parameter, with reference to this:

I’ve been using the -options parameter to hide all labels like explained here:

Something like this might work, though I haven’t tested it.

-Options @{
    scales = @{  
        xAxes = @(
            Ticks = @{
               fontSize = '8'
               }
        )
    }
 }
1 Like