What is everyones preferred method of getting a line chart to begin at zero?
The examples found in older posts on the forums does not work anymore.
$Options = @{
Type = 'line'
Data = $PingReportCombinedScoreList
Dataset = $DataSet
LabelProperty = "Date"
Options = @{
scales = @{
yAxes = @(
@{
ticks = @{
beginAtZero = $true
}
}
)
}
}
}
New-UDChartJS @Options