{% if showValue %} {% if valueType == 'percentage' %} {{ (value|default(0) * 100)|round|int }}% {% else %} {{ value|default(0) }} {% endif %} {% endif %} {% if label %} {{ label }} {% endif %}
{% if showThresholds %}
{% for threshold in thresholds %}
{% if threshold.label %}
{{ threshold.label }}
{% endif %}
{% endfor %}
{% endif %} {% if showSegments %}
{% for segment in segments %}
{{ segment.label }}
{% endfor %}
{% endif %}
{% if showLegend %}
{% for legend in legends %}
{{ legend.label }}
{% endfor %}
{% endif %} {% if description %}
{{ description }}
{% endif %}