/** * ----------------------------------------------------------------------------- * @package smartVISU * @author Wolfram v. Hülsen * @copyright 2012 - 2024 * @license GPL [http://www.gnu.de] * @version 1.0 * * @title Plot Analyser * @category visu * @icon icons/ws/measure_power_meter.svg * @color #b00 * @description Analyse plots with flexible configuration of series parameters * @description_de Analysieren von Plots mit flexibler Eingabe von Parametern * * ----------------------------------------------------------------------------- */ {% extends "apps.html" %} {% block sidebar %}
Plot Analyser

Plot Analyser

{{ lang('plot_analyser', 'Global') }}:


Y {{ lang('plot_analyser', 'Axis') }} 1Y {{ lang('plot_analyser', 'Axis') }} 2Y {{ lang('plot_analyser', 'Axis') }} 3Y {{ lang('plot_analyser', 'Axis') }} 4
{{ lang('plot_analyser', 'Axis') }} {{ lang('plot_analyser', 'active') }}
Y min
Y max
Y {{ lang('plot_analyser', 'Axis') }} Position
Y {{ lang('plot_analyser', 'Axis') }} {{ lang('plot_analyser', 'scale') }}
Y {{ lang('plot_analyser', 'Axis') }} {{ lang('plot_analyser', 'Unit') }}
help
{{ lang('plot_analyser', 'Chartopts', 'hint') }}

{{ lang('plot_analyser', 'itemSettings') }}:

{% set sources = { '1': 'Item 1', '2': 'Item 2', '3': 'Item 3', '4': 'Item 4', '5': 'Item 5' } %}
    {% for source, title in sources %}
  • {{ title }}
  • {% endfor %}

{% for source, title in sources %}
help
{{ lang('plot_analyser', 'Item', 'hint') }}
help
{{ lang('plot_analyser', 'Count', 'hint') }} Default: 100
help
{{ lang('plot_analyser', 'Exposure', 'hint') }} line, linestack, stair, spline, area, areastair, areaspline, areastack, column, columnstack. Default: line
help
{{ lang('plot_analyser', 'Color', 'hint') }}
help
{{ lang('plot_analyser', 'Assign', 'hint') }}
help
{{ lang('plot_analyser', 'Stacking', 'hint') }} normal, percent. Default: normal
help
{{ lang('plot_analyser', 'Stacks', 'hint') }}
{% endfor %}

{% endblock %} {% block content %} {% set mode = "raw" %} /** just init to activate boost mode */ {% set zoom = "advanced" %} /** enable navigator */ {% set export = 2 %} /** activate export menu */
{{ plot.period('analyse-plotpopup', item, mode, tmin, tmax, ymin, ymax, count, label, color, exposure, axis, zoom, assign, opposite, ycolor, ytype, unit, chartoptions, stacking, stacks, export, source) }}
{{ lang('plot_analyser', 'Shift', 'label') }}:  {{ plot.timeshift('analyse-timeshift','analyse-plotpopup', '1d','mini', '- 1d +') }}

{{ lang('plot_analyser', 'Code', 'label') }}:

{% filter trim|escape|nl2br %}{% verbatim %} {{ plot.period(...) }} {% endverbatim %}{% endfilter %}
/** options not (yet) used data-axis = [ x axix name and y axis name(s) ] data-ycolor = [colors of y axes ] */
{% endblock %}