{{_('Series Options')}}
{% for n in range(widget_variables['colors_graph']|length) %}
{{widget_variables['colors_graph'][n]['type']}} {%- if 'channel' in widget_variables['colors_graph'][n] -%} {{', CH' + widget_variables['colors_graph'][n]['channel']|string}} {%- endif -%} {%- if widget_variables['colors_graph'][n]['name'] -%} {{', ' + widget_variables['colors_graph'][n]['name']}} {%- endif -%} {%- if widget_variables['colors_graph'][n]['measure_name'] -%} {{', ' + widget_variables['colors_graph'][n]['measure_name']}} {%- endif -%} {%- if widget_variables['colors_graph'][n]['unit'] in dict_units -%} {{' (' + dict_units[widget_variables['colors_graph'][n]['unit']]['name'] + ')'}} {%- endif -%}
{% set index = '{0:0>2}'.format(n) %}
{% if widget_variables['colors_graph'][n]['type'] != 'Tag' %}
{% endif %}
{% endfor %}
{{_('Y-Axis Options')}}
{% for each_yaxis in widget_variables['y_axes'] if each_yaxis in dict_units %} {% set index = '{0:0>2}'.format(loop.index) %}
{{dict_units[each_yaxis]['name']}}{% if dict_units[each_yaxis]['unit'] != '' %} ({{dict_units[each_yaxis]['unit']}}){% endif %}
{% endfor %}