Translations:SVG-Dashboards/29/en

Материал из Wiren Board
Версия от 12:53, 4 августа 2023; A.Degtyarev (обсуждение | вклад) (Новая страница: «=== Rounding values === Often, values from sensors come with several decimal places, if you do not need such accuracy in the svg panel, then they can be rounded: <syntaxhighlight lang="javascript"> val.toFixed(n) //round the value of the variable val to n decimal places val.toFixed(2) //round the value of the variable val to two decimal places 220.238 → 220.24 </syntaxhighlight>»)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)

Rounding values

Often, values from sensors come with several decimal places, if you do not need such accuracy in the svg panel, then they can be rounded:

 
val.toFixed(n) //round the value of the variable val to n decimal places
val.toFixed(2) //round the value of the variable val to two decimal places 220.238 → 220.24