WebChart Bar Set Minimum

In Options you need to add: scales, yAxes, ticks, beginAtZero = True, for that you need to add the Event OverrideOptions.

image

Var js As String = "{""yAxes"": [{""ticks"": {""beginAtZero"":true}}]}"
options.value("scales") = New JSONItem(js)

Edit: found a post with a ‘step by step’ jsonitem:

Edit2: you can also take a look at this WebSDK WebChart Chart.JS 3.x

Edit3: you can use ‘min’ instead of ‘beginAtZero’ and ‘0’ instead of ‘true’ (or any other value.

1 Like