Translations:SVG-Dashboards/53/en

Материал из Wiren Board
Версия от 12:54, 4 августа 2023; A.Degtyarev (обсуждение | вклад) (Новая страница: «Let's make it so that when the value is greater than 20, the stroke of the element becomes red, dotted and 2px thick. For values less than or equal to 20, the element style will be left by default: <syntaxhighlight lang="javascript"> (val > 20) ? 'stroke: red; stroke-width:2px; stroke-dasharray:2,1' : '' </syntaxhighlight>»)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)

Let's make it so that when the value is greater than 20, the stroke of the element becomes red, dotted and 2px thick. For values less than or equal to 20, the element style will be left by default:

 
(val > 20) ? 'stroke: red; stroke-width:2px; stroke-dasharray:2,1' : ''