Chart, Hide X axis labels?

All the options are available in the ChartJS Docs. They differ per type of chart. You should be able to use this hashtable to hide labels:

@{
        scales = @{  
               xAxes: @(
                     ticks = @{
                              display = $false
                         }
               )
        }
}
1 Like