@flexem/fc-gui 3.0.0-alpha.90 → 3.0.0-alpha.91
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +13 -0
- package/.eslintrc.js +159 -0
- package/.vscode/settings.json +12 -0
- package/CHANGELOG.md +5 -0
- package/angular.json +157 -0
- package/demo/src/app/app.component.html +5 -0
- package/demo/src/app/app.component.ts +8 -0
- package/demo/src/app/app.module.ts +54 -0
- package/demo/src/app/bar/bar-config-store.ts +487 -0
- package/demo/src/app/bar/bar.component.html +3 -0
- package/demo/src/app/bar/bar.component.ts +146 -0
- package/demo/src/app/default/default.component.html +3 -0
- package/demo/src/app/default/default.component.ts +28 -0
- package/demo/src/app/history-data/history-data.component.html +5 -0
- package/demo/src/app/history-data/history-data.component.less +6 -0
- package/demo/src/app/history-data/history-data.component.ts +33 -0
- package/demo/src/app/history-data/history-data.config-store.ts +159 -0
- package/demo/src/app/switch-indicator-light/switch-config-store.ts +477 -0
- package/demo/src/app/switch-indicator-light/switch-indicator-light.component.html +5 -0
- package/demo/src/app/switch-indicator-light/switch-indicator-light.component.ts +28 -0
- package/demo/src/assets/e8nZC.gif +0 -0
- package/demo/src/assets/gallery/character01/character1.png +0 -0
- package/demo/src/assets/gallery/character01/index.json +24 -0
- package/demo/src/assets/gallery/character01/state0.svg +19 -0
- package/demo/src/assets/gallery/indicatorLight/index.json +58 -0
- package/demo/src/assets/gallery/indicatorLight/indicatorLight.png +0 -0
- package/demo/src/assets/gallery/indicatorLight/state0.svg +33 -0
- package/demo/src/assets/gallery/indicatorLight/state1.svg +33 -0
- package/demo/src/assets/gallery/indicatorLight/state2.svg +68 -0
- package/demo/src/assets/gallery/indicatorLight/state3.svg +68 -0
- package/demo/src/assets/gallery/indicatorLight/state4.svg +72 -0
- package/demo/src/assets/gallery/indicatorLight/state5.svg +68 -0
- package/demo/src/assets/gallery/indicatorLight2/app.component.html +3 -0
- package/demo/src/assets/gallery/indicatorLight2/index.json +30 -0
- package/demo/src/assets/gallery/indicatorLight2/indicatorLight2.png +0 -0
- package/demo/src/assets/gallery/indicatorLight2/state0.png +0 -0
- package/demo/src/assets/gallery/indicatorLight2/state1.png +0 -0
- package/demo/src/environments/environment.prod.ts +3 -0
- package/demo/src/environments/environment.ts +8 -0
- package/demo/src/favicon.ico +0 -0
- package/demo/src/gui/default-config-store.ts +225 -0
- package/demo/src/gui/default-gui-context.ts +46 -0
- package/demo/src/gui/default-history-data.store.ts +10 -0
- package/demo/src/gui/default-operation-record.service.ts +11 -0
- package/demo/src/gui/default-permission-checker.ts +23 -0
- package/demo/src/gui/default-variable-communicator.ts +68 -0
- package/demo/src/index.html +14 -0
- package/demo/src/main.ts +11 -0
- package/demo/src/polyfills.ts +68 -0
- package/demo/src/styles.css +1 -0
- package/demo/src/tsconfig.app.json +29 -0
- package/demo/src/tsconfig.spec.json +21 -0
- package/demo/src/typings.d.ts +5 -0
- package/e2e/app.e2e-spec.ts +14 -0
- package/e2e/app.po.ts +11 -0
- package/e2e/tsconfig.e2e.json +12 -0
- package/karma.conf.js +42 -0
- package/package.json +98 -23
- package/protractor.conf.js +30 -0
- package/src/communication/variable/variable-communicator.ts +22 -0
- package/src/communication/variable/variable-definition.ts +10 -0
- package/src/communication/variable/variable-state-enum.ts +7 -0
- package/src/communication/variable/variable-state.ts +5 -0
- package/src/communication/variable/variable-value.ts +5 -0
- package/src/config/alarm/alarm.store.ts +9 -0
- package/src/config/alarm/get-alarms-args.ts +11 -0
- package/src/config/config-store.ts +24 -0
- package/src/config/graph/graph-result.ts +16 -0
- package/src/config/graph/graph-store.ts +12 -0
- package/src/config/graph/graph-type.ts +4 -0
- package/src/config/graph/graph.ts +6 -0
- package/src/config/history-data/get-history-data-args.ts +23 -0
- package/src/config/history-data/historical-curve.time-range.ts +25 -0
- package/src/config/history-data/history-data-value.ts +6 -0
- package/src/config/history-data/history-data.model.ts +6 -0
- package/src/config/history-data/history-data.store.ts +12 -0
- package/src/config/image/image-store.ts +8 -0
- package/src/config/index.ts +17 -0
- package/src/config/variable/get-variable-name-args.ts +7 -0
- package/src/config/variable/variable-store.ts +10 -0
- package/src/config/view/view-store.ts +25 -0
- package/src/config/view/view.model.ts +4 -0
- package/src/core/stringifying-map.ts +30 -0
- package/src/core/stringifying-set.ts +26 -0
- package/src/elements/air-quality/air-quality-element.ts +239 -0
- package/src/elements/alarm/alarm-element.ts +423 -0
- package/src/elements/bar-graph-element.ts +193 -0
- package/src/elements/base/base-element.ts +15 -0
- package/src/elements/base/conditional-control-element.ts +101 -0
- package/src/elements/base/conditional-display-element.ts +90 -0
- package/src/elements/base/conditional-dynamic-display-element.ts +159 -0
- package/src/elements/base/conditional-enable-element.ts +113 -0
- package/src/elements/base/readable-element.ts +94 -0
- package/src/elements/base/state-control-element.ts +200 -0
- package/src/elements/character-display/character-display-element.ts +314 -0
- package/src/elements/datetime-display/datetime-display-element.ts +149 -0
- package/src/elements/historical-curve/historical-curve-element-status.ts +6 -0
- package/src/elements/historical-curve/historical-curve.element.ts +593 -0
- package/src/elements/main-element.ts +507 -0
- package/src/elements/meter-element.ts +158 -0
- package/src/elements/numerical-display/numerical-display-element.ts +438 -0
- package/src/elements/per-view-variable-communicator.ts +77 -0
- package/src/elements/pipe/pipe-element.ts +166 -0
- package/src/elements/ring-graph/ring-graph-element.ts +230 -0
- package/src/elements/shared/graph/graph-state-element.ts +121 -0
- package/src/elements/shared/math-utils.ts +14 -0
- package/src/elements/shared/text/text-element.ts +88 -0
- package/src/elements/shared/text/text-state-element.ts +150 -0
- package/src/elements/shared/text/text-state.model.ts +6 -0
- package/src/elements/shared/text/text-utils.ts +45 -0
- package/src/elements/static-elements/hyperlink-element.ts +62 -0
- package/src/elements/static-elements/image-element.ts +56 -0
- package/src/elements/static-elements/text-element.ts +70 -0
- package/src/elements/switch-indicator-light/bit-indicator-light-operator.ts +82 -0
- package/src/elements/switch-indicator-light/bit-switch-operator.ts +113 -0
- package/src/elements/switch-indicator-light/current-stateId-value.ts +8 -0
- package/src/elements/switch-indicator-light/indicator-light-operator.ts +9 -0
- package/src/elements/switch-indicator-light/switch-indicator-light-element.ts +305 -0
- package/src/elements/switch-indicator-light/switch-operator.ts +7 -0
- package/src/elements/switch-indicator-light/word-indicator-light-operator.ts +70 -0
- package/src/elements/switch-indicator-light/word-switch-operator.ts +82 -0
- package/src/elements/table/table-element.ts +15 -0
- package/src/elements/vector-graphics/ellipse-element.ts +15 -0
- package/src/elements/vector-graphics/poly-line-element.ts +31 -0
- package/src/elements/vector-graphics/polygon-element.ts +31 -0
- package/src/elements/vector-graphics/rectangle-element.ts +15 -0
- package/src/elements/vector-graphics/sector-element.ts +15 -0
- package/src/elements/vector-graphics/straight-line-element.ts +31 -0
- package/src/elements/video/video-element.ts +240 -0
- package/src/elements/view-operation/view-operation.element.ts +228 -0
- package/src/elements/weather/weater-element.ts +281 -0
- package/src/gui/gui-context.ts +18 -0
- package/src/gui/gui-host.ts +187 -0
- package/src/gui/gui-view.ts +214 -0
- package/src/gui/gui.component.ts +220 -0
- package/src/gui/interfaces/gui-options.ts +7 -0
- package/src/gui.module.ts +68 -0
- package/src/localization/localization.service.ts +115 -0
- package/src/localization/localization.service.zh_CN.ts +57 -0
- package/src/logger/console-logger.service.ts +38 -0
- package/src/logger/logger.service.ts +26 -0
- package/src/modal/alert/alert-modal.component.ts +26 -0
- package/src/modal/confirm-operation/confirm-operation-modal.component.ts +28 -0
- package/src/modal/verify-password/verify-password-modal.component.ts +59 -0
- package/src/modal/write-character/write-character-modal-args.ts +8 -0
- package/src/modal/write-character/write-character-modal.component.ts +74 -0
- package/src/modal/write-value/write-value-modal-args.ts +16 -0
- package/src/modal/write-value/write-value-modal.component.ts +237 -0
- package/src/modal/write-value/write-value-model-result.ts +4 -0
- package/src/model/air-quality/air-quality-info.ts +25 -0
- package/src/model/air-quality/air-quality.model.ts +8 -0
- package/src/model/alarm/alarm.model.ts +14 -0
- package/src/model/bar-graph/bar-graph-direction.ts +6 -0
- package/src/model/bar-graph/bar-graph.ts +28 -0
- package/src/model/base/base-element-model.ts +5 -0
- package/src/model/base/conditional-control-model.ts +7 -0
- package/src/model/base/conditional-display-model.ts +10 -0
- package/src/model/base/conditional-dynamic-display-model.ts +22 -0
- package/src/model/base/conditional-enable-model.ts +10 -0
- package/src/model/base/font-setting-model.ts +14 -0
- package/src/model/base/readable-model.ts +21 -0
- package/src/model/character-display/character-display.ts +20 -0
- package/src/model/datetime-display/date-format-type.ts +5 -0
- package/src/model/datetime-display/datetime-display-settings.ts +19 -0
- package/src/model/datetime-display/datetime-display.ts +21 -0
- package/src/model/datetime-display/datetime-separator-type.ts +6 -0
- package/src/model/datetime-display/time-format-type.ts +4 -0
- package/src/model/historical-curve/curve-type.ts +5 -0
- package/src/model/historical-curve/historical-curve-axis-settings.ts +18 -0
- package/src/model/historical-curve/historical-curve-chanel.model.ts +25 -0
- package/src/model/historical-curve/historical-curve.data-settings.ts +10 -0
- package/src/model/historical-curve/historical-curve.display-settings.ts +20 -0
- package/src/model/historical-curve/historical-curve.model.ts +9 -0
- package/src/model/hyperlink/hyperlink.model.ts +9 -0
- package/src/model/image/image-fill-type.ts +4 -0
- package/src/model/image/image.ts +10 -0
- package/src/model/meter/meter.ts +20 -0
- package/src/model/numerical-display/index.ts +9 -0
- package/src/model/numerical-display/numerical-display.ts +30 -0
- package/src/model/numerical-display/numerical-operation-settings.ts +7 -0
- package/src/model/numerical-display/numerical-operation-type.ts +4 -0
- package/src/model/numerical-display/numerical-operation.ts +12 -0
- package/src/model/pipe/flow-direction-type.ts +4 -0
- package/src/model/pipe/pipe.ts +18 -0
- package/src/model/poly-line/poly-line-model.ts +5 -0
- package/src/model/polygon/polygon-model.ts +5 -0
- package/src/model/ring-graph/ring-graph.model.ts +36 -0
- package/src/model/settings/background/view-background-fill-type.ts +5 -0
- package/src/model/settings/background/view-background.model.ts +9 -0
- package/src/model/settings/popup/view-popup-backdrop-type.ts +4 -0
- package/src/model/settings/popup/view-popup-location-type.ts +4 -0
- package/src/model/settings/popup/view-popup-setting.model.ts +18 -0
- package/src/model/settings/view-settings.model.ts +7 -0
- package/src/model/shared/binary.ts +41 -0
- package/src/model/shared/condition/bit-condition-item-observer.ts +59 -0
- package/src/model/shared/condition/bit-condition-logic.ts +4 -0
- package/src/model/shared/condition/bit-condition-model.ts +9 -0
- package/src/model/shared/condition/bit-condition.ts +5 -0
- package/src/model/shared/condition/condition-control-result-value.ts +6 -0
- package/src/model/shared/condition/condition-helper.ts +23 -0
- package/src/model/shared/condition/condition-item-model.ts +11 -0
- package/src/model/shared/condition/condition-item-observer.ts +22 -0
- package/src/model/shared/condition/condition-items-observer.ts +6 -0
- package/src/model/shared/condition/condition-items-result-observer.ts +96 -0
- package/src/model/shared/condition/condition-type.ts +4 -0
- package/src/model/shared/condition/convert-condition-model.ts +6 -0
- package/src/model/shared/condition/index.ts +18 -0
- package/src/model/shared/condition/relation-condition-result-state.ts +8 -0
- package/src/model/shared/condition/relation-condition-result.ts +7 -0
- package/src/model/shared/condition/relation-type.ts +5 -0
- package/src/model/shared/condition/relational-operator.ts +8 -0
- package/src/model/shared/condition/variable-value-logic-model.ts +12 -0
- package/src/model/shared/condition/variable-value-type.ts +4 -0
- package/src/model/shared/condition/word-condition-item-observer.ts +158 -0
- package/src/model/shared/condition/word-condition-model.ts +9 -0
- package/src/model/shared/condition/word-condition.ts +6 -0
- package/src/model/shared/data-type/display-data-type.ts +5 -0
- package/src/model/shared/data-type/fbox-data-type.ts +15 -0
- package/src/model/shared/data-type/fcloud-data-Type.ts +8 -0
- package/src/model/shared/dynamic-display/dynamic-behavior-type.ts +5 -0
- package/src/model/shared/dynamic-display/dynamic-display-behavior-model.ts +6 -0
- package/src/model/shared/dynamic-display/dynamic-display-result-model.ts +6 -0
- package/src/model/shared/dynamic-display/dynamic-display.ts +48 -0
- package/src/model/shared/graph/custom-style.ts +17 -0
- package/src/model/shared/graph/graph-setting.ts +11 -0
- package/src/model/shared/rotation/rotation-behavior-model.ts +5 -0
- package/src/model/shared/rotation/rotation-behavior.ts +91 -0
- package/src/model/shared/rotation/rotation-direction-type.ts +4 -0
- package/src/model/shared/rotation/rotation-model.ts +15 -0
- package/src/model/shared/rotation/rotation-observer-model.ts +5 -0
- package/src/model/shared/rotation/rotation-observer.ts +32 -0
- package/src/model/shared/scale/scale-mark.model.ts +7 -0
- package/src/model/shared/scale/scale-model.ts +25 -0
- package/src/model/shared/size.model.ts +17 -0
- package/src/model/shared/state/state.ts +8 -0
- package/src/model/shared/text/text.ts +6 -0
- package/src/model/shared/translation/translation-behavior-model.ts +5 -0
- package/src/model/shared/translation/translation-behavior.ts +71 -0
- package/src/model/shared/translation/translation-direction-type.ts +4 -0
- package/src/model/shared/translation/translation-observer-model.ts +5 -0
- package/src/model/shared/translation/translation-observer.ts +33 -0
- package/src/model/shared/variable/variable-identifier.model.ts +6 -0
- package/src/model/straight-line/straight-line-model.ts +5 -0
- package/src/model/switch-indicator-light/bit-switch-operation.ts +6 -0
- package/src/model/switch-indicator-light/bit-switch-settings.ts +12 -0
- package/src/model/switch-indicator-light/fault-flicker.ts +6 -0
- package/src/model/switch-indicator-light/flicker.ts +5 -0
- package/src/model/switch-indicator-light/index.ts +18 -0
- package/src/model/switch-indicator-light/indicator-light-fault-flicker.ts +6 -0
- package/src/model/switch-indicator-light/indicator-light-settings.ts +8 -0
- package/src/model/switch-indicator-light/indicator-light-type.ts +4 -0
- package/src/model/switch-indicator-light/switch-indicator-light.ts +47 -0
- package/src/model/switch-indicator-light/switch-indicator-state.ts +9 -0
- package/src/model/switch-indicator-light/switch-settings.ts +8 -0
- package/src/model/switch-indicator-light/switch-type.ts +4 -0
- package/src/model/switch-indicator-light/word-switch-operation.ts +5 -0
- package/src/model/switch-indicator-light/word-switch-settings.ts +14 -0
- package/src/model/table/table-model.ts +14 -0
- package/src/model/text/text.model.ts +8 -0
- package/src/model/video/video.model.ts +9 -0
- package/src/model/view-operation/view-operation-element.model.ts +20 -0
- package/src/model/view-operation/view-operation-type.ts +22 -0
- package/src/model/weather/weather-info.ts +11 -0
- package/src/model/weather/weather.model.ts +8 -0
- package/src/package.json +17 -0
- package/src/public_api.ts +25 -0
- package/src/remote/communication/variable/remote-variable-communicator.ts +254 -0
- package/src/remote/communication/variable/remote-variable-protocol.ts +29 -0
- package/src/remote/config/graph/get-released-graph-state-result.ts +7 -0
- package/src/remote/config/graph/get-released-graph-states.ts +5 -0
- package/src/remote/config/graph/graph-state-key.ts +7 -0
- package/src/remote/config/graph/graph-state-result.ts +6 -0
- package/src/remote/config/graph/remote-graph-protocol.ts +19 -0
- package/src/remote/config/graph/remote-graph-store.ts +112 -0
- package/src/remote/config/image/remote-image-protocol.ts +6 -0
- package/src/remote/config/image/remote-image-store.ts +29 -0
- package/src/remote/config/view/remote-view-protocol.ts +14 -0
- package/src/remote/config/view/remote-view-store.ts +52 -0
- package/src/remote/index.ts +17 -0
- package/src/service/operation-record/create-operation-record-args.ts +6 -0
- package/src/service/operation-record/index.ts +5 -0
- package/src/service/operation-record/operation-record.service.ts +5 -0
- package/src/service/operation-record/variable-option.model.ts +6 -0
- package/src/service/released-variable/released-variable.service.ts +5 -0
- package/src/service/video/video.service.ts +5 -0
- package/src/service/weather.service.ts +7 -0
- package/src/settings/display-mode.ts +12 -0
- package/src/settings/global-settings.ts +11 -0
- package/src/settings/view-resize-mode.ts +12 -0
- package/src/shared/disposable.ts +3 -0
- package/src/shared/gui-consts.ts +33 -0
- package/src/shared/operation-helper.ts +42 -0
- package/src/tsconfig.json +33 -0
- package/src/typings.d.ts +1 -0
- package/src/utils/access-permission.service.ts +27 -0
- package/src/utils/access-permission.ts +5 -0
- package/src/utils/auto-focus.directive.ts +16 -0
- package/src/utils/bs-modal-drag.directive.ts +26 -0
- package/src/utils/data-type/data-type.service.ts +156 -0
- package/src/utils/data-type/fbox-data-type.service.ts +302 -0
- package/src/utils/data-type/fcloud-data-type.service.ts +205 -0
- package/src/utils/fraction-digit.service.ts +132 -0
- package/src/utils/graph-util.ts +19 -0
- package/src/utils/guid.ts +29 -0
- package/src/utils/index.ts +8 -0
- package/src/utils/numerical-operation-type.ts +4 -0
- package/src/utils/numerical-operation.service.ts +167 -0
- package/src/utils/variable-util.ts +13 -0
- package/src/view/popup-view.service.ts +11 -0
- package/src/view/view.service.ts +13 -0
- package/bundles/@flexem/fc-gui.umd.js +0 -83982
- package/bundles/@flexem/fc-gui.umd.js.map +0 -1
- package/bundles/@flexem/fc-gui.umd.min.js +0 -47
- package/bundles/@flexem/fc-gui.umd.min.js.map +0 -1
- package/communication/index.js +0 -1
- package/communication/index.metadata.json +0 -1
- package/communication/variable/index.js +0 -4
- package/communication/variable/index.metadata.json +0 -1
- package/communication/variable/variable-communicator.d.ts +0 -13
- package/communication/variable/variable-communicator.js +0 -0
- package/communication/variable/variable-communicator.metadata.json +0 -1
- package/communication/variable/variable-definition.d.ts +0 -10
- package/communication/variable/variable-definition.js +0 -14
- package/communication/variable/variable-definition.metadata.json +0 -1
- package/communication/variable/variable-state-enum.d.ts +0 -7
- package/communication/variable/variable-state-enum.js +0 -8
- package/communication/variable/variable-state-enum.metadata.json +0 -1
- package/communication/variable/variable-state.d.ts +0 -6
- package/communication/variable/variable-state.js +0 -6
- package/communication/variable/variable-state.metadata.json +0 -1
- package/communication/variable/variable-value.d.ts +0 -8
- package/communication/variable/variable-value.js +0 -8
- package/communication/variable/variable-value.metadata.json +0 -1
- package/config/alarm/alarm.store.d.ts +0 -6
- package/config/alarm/alarm.store.js +0 -0
- package/config/alarm/alarm.store.metadata.json +0 -1
- package/config/alarm/get-alarms-args.d.ts +0 -9
- package/config/alarm/get-alarms-args.js +0 -9
- package/config/alarm/get-alarms-args.metadata.json +0 -1
- package/config/alarm/index.js +0 -1
- package/config/alarm/index.metadata.json +0 -1
- package/config/config-store.d.ts +0 -17
- package/config/config-store.js +0 -0
- package/config/config-store.metadata.json +0 -1
- package/config/graph/graph-result.d.ts +0 -9
- package/config/graph/graph-result.js +0 -13
- package/config/graph/graph-result.metadata.json +0 -1
- package/config/graph/graph-store.d.ts +0 -9
- package/config/graph/graph-store.js +0 -0
- package/config/graph/graph-store.metadata.json +0 -1
- package/config/graph/graph-type.d.ts +0 -4
- package/config/graph/graph-type.js +0 -5
- package/config/graph/graph-type.metadata.json +0 -1
- package/config/graph/graph.d.ts +0 -6
- package/config/graph/graph.js +0 -6
- package/config/graph/graph.metadata.json +0 -1
- package/config/history-data/get-history-data-args.d.ts +0 -22
- package/config/history-data/get-history-data-args.js +0 -21
- package/config/history-data/get-history-data-args.metadata.json +0 -1
- package/config/history-data/historical-curve.time-range.d.ts +0 -18
- package/config/history-data/historical-curve.time-range.js +0 -19
- package/config/history-data/historical-curve.time-range.metadata.json +0 -1
- package/config/history-data/history-data-value.d.ts +0 -6
- package/config/history-data/history-data-value.js +0 -6
- package/config/history-data/history-data-value.metadata.json +0 -1
- package/config/history-data/history-data.model.d.ts +0 -7
- package/config/history-data/history-data.model.js +0 -7
- package/config/history-data/history-data.model.metadata.json +0 -1
- package/config/history-data/history-data.store.d.ts +0 -10
- package/config/history-data/history-data.store.js +0 -0
- package/config/history-data/history-data.store.metadata.json +0 -1
- package/config/history-data/index.js +0 -3
- package/config/history-data/index.metadata.json +0 -1
- package/config/image/image-store.d.ts +0 -6
- package/config/image/image-store.js +0 -0
- package/config/image/image-store.metadata.json +0 -1
- package/config/index.d.ts +0 -11
- package/config/index.js +0 -7
- package/config/index.metadata.json +0 -1
- package/config/variable/get-variable-name-args.d.ts +0 -6
- package/config/variable/get-variable-name-args.js +0 -7
- package/config/variable/get-variable-name-args.metadata.json +0 -1
- package/config/variable/index.js +0 -1
- package/config/variable/index.metadata.json +0 -1
- package/config/variable/variable-store.d.ts +0 -7
- package/config/variable/variable-store.js +0 -0
- package/config/variable/variable-store.metadata.json +0 -1
- package/config/view/view-store.d.ts +0 -20
- package/config/view/view-store.js +0 -0
- package/config/view/view-store.metadata.json +0 -1
- package/config/view/view.model.d.ts +0 -4
- package/config/view/view.model.js +0 -5
- package/config/view/view.model.metadata.json +0 -1
- package/core/index.js +0 -1
- package/core/index.metadata.json +0 -1
- package/core/stringifying-map.d.ts +0 -11
- package/core/stringifying-map.js +0 -24
- package/core/stringifying-map.metadata.json +0 -1
- package/core/stringifying-set.d.ts +0 -10
- package/core/stringifying-set.js +0 -21
- package/core/stringifying-set.metadata.json +0 -1
- package/elements/air-quality/air-quality-element.d.ts +0 -31
- package/elements/air-quality/air-quality-element.js +0 -194
- package/elements/air-quality/air-quality-element.metadata.json +0 -1
- package/elements/alarm/alarm-element.d.ts +0 -44
- package/elements/alarm/alarm-element.js +0 -382
- package/elements/alarm/alarm-element.metadata.json +0 -1
- package/elements/bar-graph-element.d.ts +0 -27
- package/elements/bar-graph-element.js +0 -180
- package/elements/bar-graph-element.metadata.json +0 -1
- package/elements/base/base-element.d.ts +0 -11
- package/elements/base/base-element.js +0 -9
- package/elements/base/base-element.metadata.json +0 -1
- package/elements/base/conditional-control-element.d.ts +0 -16
- package/elements/base/conditional-control-element.js +0 -87
- package/elements/base/conditional-control-element.metadata.json +0 -1
- package/elements/base/conditional-display-element.d.ts +0 -24
- package/elements/base/conditional-display-element.js +0 -86
- package/elements/base/conditional-display-element.metadata.json +0 -1
- package/elements/base/conditional-dynamic-display-element.d.ts +0 -26
- package/elements/base/conditional-dynamic-display-element.js +0 -142
- package/elements/base/conditional-dynamic-display-element.metadata.json +0 -1
- package/elements/base/conditional-enable-element.d.ts +0 -21
- package/elements/base/conditional-enable-element.js +0 -100
- package/elements/base/conditional-enable-element.metadata.json +0 -1
- package/elements/base/index.js +0 -3
- package/elements/base/index.metadata.json +0 -1
- package/elements/base/readable-element.d.ts +0 -20
- package/elements/base/readable-element.js +0 -87
- package/elements/base/readable-element.metadata.json +0 -1
- package/elements/base/state-control-element.d.ts +0 -24
- package/elements/base/state-control-element.js +0 -180
- package/elements/base/state-control-element.metadata.json +0 -1
- package/elements/character-display/character-display-element.d.ts +0 -35
- package/elements/character-display/character-display-element.js +0 -311
- package/elements/character-display/character-display-element.metadata.json +0 -1
- package/elements/datetime-display/datetime-display-element.d.ts +0 -21
- package/elements/datetime-display/datetime-display-element.js +0 -132
- package/elements/datetime-display/datetime-display-element.metadata.json +0 -1
- package/elements/historical-curve/historical-curve-element-status.d.ts +0 -6
- package/elements/historical-curve/historical-curve-element-status.js +0 -7
- package/elements/historical-curve/historical-curve-element-status.metadata.json +0 -1
- package/elements/historical-curve/historical-curve.element.d.ts +0 -59
- package/elements/historical-curve/historical-curve.element.js +0 -475
- package/elements/historical-curve/historical-curve.element.metadata.json +0 -1
- package/elements/historical-curve/historical-curve.element.option.js +0 -0
- package/elements/historical-curve/historical-curve.element.option.metadata.json +0 -1
- package/elements/historical-curve/historical-curve.time-period.js +0 -0
- package/elements/historical-curve/historical-curve.time-period.metadata.json +0 -1
- package/elements/main-element.d.ts +0 -45
- package/elements/main-element.js +0 -328
- package/elements/main-element.metadata.json +0 -1
- package/elements/meter-element.d.ts +0 -26
- package/elements/meter-element.js +0 -139
- package/elements/meter-element.metadata.json +0 -1
- package/elements/numerical-display/numerical-display-element.d.ts +0 -47
- package/elements/numerical-display/numerical-display-element.js +0 -405
- package/elements/numerical-display/numerical-display-element.metadata.json +0 -1
- package/elements/per-view-variable-communicator.d.ts +0 -19
- package/elements/per-view-variable-communicator.js +0 -53
- package/elements/per-view-variable-communicator.metadata.json +0 -1
- package/elements/pipe/pipe-element.d.ts +0 -19
- package/elements/pipe/pipe-element.js +0 -141
- package/elements/pipe/pipe-element.metadata.json +0 -1
- package/elements/ring-graph/ring-graph-element.d.ts +0 -28
- package/elements/ring-graph/ring-graph-element.js +0 -192
- package/elements/ring-graph/ring-graph-element.metadata.json +0 -1
- package/elements/shared/graph/graph-state-element.d.ts +0 -27
- package/elements/shared/graph/graph-state-element.js +0 -110
- package/elements/shared/graph/graph-state-element.metadata.json +0 -1
- package/elements/shared/math-utils.d.ts +0 -2
- package/elements/shared/math-utils.js +0 -14
- package/elements/shared/math-utils.metadata.json +0 -1
- package/elements/shared/text/text-element.d.ts +0 -8
- package/elements/shared/text/text-element.js +0 -79
- package/elements/shared/text/text-element.metadata.json +0 -1
- package/elements/shared/text/text-state-element.d.ts +0 -23
- package/elements/shared/text/text-state-element.js +0 -136
- package/elements/shared/text/text-state-element.metadata.json +0 -1
- package/elements/shared/text/text-state.model.d.ts +0 -5
- package/elements/shared/text/text-state.model.js +0 -0
- package/elements/shared/text/text-state.model.metadata.json +0 -1
- package/elements/shared/text/text-utils.d.ts +0 -5
- package/elements/shared/text/text-utils.js +0 -45
- package/elements/shared/text/text-utils.metadata.json +0 -1
- package/elements/static-elements/hyperlink-element.d.ts +0 -14
- package/elements/static-elements/hyperlink-element.js +0 -48
- package/elements/static-elements/hyperlink-element.metadata.json +0 -1
- package/elements/static-elements/image-element.d.ts +0 -14
- package/elements/static-elements/image-element.js +0 -41
- package/elements/static-elements/image-element.metadata.json +0 -1
- package/elements/static-elements/text-element.d.ts +0 -16
- package/elements/static-elements/text-element.js +0 -55
- package/elements/static-elements/text-element.metadata.json +0 -1
- package/elements/switch-indicator-light/bit-indicator-light-operator.d.ts +0 -20
- package/elements/switch-indicator-light/bit-indicator-light-operator.js +0 -78
- package/elements/switch-indicator-light/bit-indicator-light-operator.metadata.json +0 -1
- package/elements/switch-indicator-light/bit-switch-operator.d.ts +0 -19
- package/elements/switch-indicator-light/bit-switch-operator.js +0 -107
- package/elements/switch-indicator-light/bit-switch-operator.metadata.json +0 -1
- package/elements/switch-indicator-light/current-stateId-value.d.ts +0 -6
- package/elements/switch-indicator-light/current-stateId-value.js +0 -8
- package/elements/switch-indicator-light/current-stateId-value.metadata.json +0 -1
- package/elements/switch-indicator-light/indicator-light-operator.d.ts +0 -8
- package/elements/switch-indicator-light/indicator-light-operator.js +0 -0
- package/elements/switch-indicator-light/indicator-light-operator.metadata.json +0 -1
- package/elements/switch-indicator-light/switch-indicator-light-element.d.ts +0 -39
- package/elements/switch-indicator-light/switch-indicator-light-element.js +0 -252
- package/elements/switch-indicator-light/switch-indicator-light-element.metadata.json +0 -1
- package/elements/switch-indicator-light/switch-operator.d.ts +0 -6
- package/elements/switch-indicator-light/switch-operator.js +0 -0
- package/elements/switch-indicator-light/switch-operator.metadata.json +0 -1
- package/elements/switch-indicator-light/word-indicator-light-operator.d.ts +0 -18
- package/elements/switch-indicator-light/word-indicator-light-operator.js +0 -65
- package/elements/switch-indicator-light/word-indicator-light-operator.metadata.json +0 -1
- package/elements/switch-indicator-light/word-switch-operator.d.ts +0 -18
- package/elements/switch-indicator-light/word-switch-operator.js +0 -75
- package/elements/switch-indicator-light/word-switch-operator.metadata.json +0 -1
- package/elements/table/table-element.d.ts +0 -9
- package/elements/table/table-element.js +0 -6
- package/elements/table/table-element.metadata.json +0 -1
- package/elements/vector-graphics/ellipse-element.d.ts +0 -9
- package/elements/vector-graphics/ellipse-element.js +0 -6
- package/elements/vector-graphics/ellipse-element.metadata.json +0 -1
- package/elements/vector-graphics/poly-line-element.d.ts +0 -12
- package/elements/vector-graphics/poly-line-element.js +0 -19
- package/elements/vector-graphics/poly-line-element.metadata.json +0 -1
- package/elements/vector-graphics/polygon-element.d.ts +0 -12
- package/elements/vector-graphics/polygon-element.js +0 -19
- package/elements/vector-graphics/polygon-element.metadata.json +0 -1
- package/elements/vector-graphics/rectangle-element.d.ts +0 -9
- package/elements/vector-graphics/rectangle-element.js +0 -6
- package/elements/vector-graphics/rectangle-element.metadata.json +0 -1
- package/elements/vector-graphics/sector-element.d.ts +0 -9
- package/elements/vector-graphics/sector-element.js +0 -6
- package/elements/vector-graphics/sector-element.metadata.json +0 -1
- package/elements/vector-graphics/straight-line-element.d.ts +0 -12
- package/elements/vector-graphics/straight-line-element.js +0 -19
- package/elements/vector-graphics/straight-line-element.metadata.json +0 -1
- package/elements/video/video-element.d.ts +0 -31
- package/elements/video/video-element.js +0 -209
- package/elements/video/video-element.metadata.json +0 -1
- package/elements/view-operation/view-operation.element.d.ts +0 -36
- package/elements/view-operation/view-operation.element.js +0 -202
- package/elements/view-operation/view-operation.element.metadata.json +0 -1
- package/elements/weather/weater-element.d.ts +0 -38
- package/elements/weather/weater-element.js +0 -237
- package/elements/weather/weater-element.metadata.json +0 -1
- package/gui/gui-context.d.ts +0 -17
- package/gui/gui-context.js +0 -0
- package/gui/gui-context.metadata.json +0 -1
- package/gui/gui-host.d.ts +0 -50
- package/gui/gui-host.js +0 -173
- package/gui/gui-host.metadata.json +0 -1
- package/gui/gui-view.d.ts +0 -42
- package/gui/gui-view.js +0 -204
- package/gui/gui-view.metadata.json +0 -1
- package/gui/gui.component.d.ts +0 -45
- package/gui/gui.component.js +0 -240
- package/gui/gui.component.metadata.json +0 -1
- package/gui/interfaces/gui-options.d.ts +0 -6
- package/gui/interfaces/gui-options.js +0 -0
- package/gui/interfaces/gui-options.metadata.json +0 -1
- package/gui.module.d.ts +0 -2
- package/gui.module.js +0 -78
- package/gui.module.metadata.json +0 -1
- package/localization/index.js +0 -2
- package/localization/index.metadata.json +0 -1
- package/localization/localization.service.d.ts +0 -58
- package/localization/localization.service.js +0 -57
- package/localization/localization.service.metadata.json +0 -1
- package/localization/localization.service.zh_CN.d.ts +0 -2
- package/localization/localization.service.zh_CN.js +0 -55
- package/localization/localization.service.zh_CN.metadata.json +0 -1
- package/logger/console-logger.service.d.ts +0 -13
- package/logger/console-logger.service.js +0 -38
- package/logger/console-logger.service.metadata.json +0 -1
- package/logger/index.js +0 -2
- package/logger/index.metadata.json +0 -1
- package/logger/logger.service.d.ts +0 -14
- package/logger/logger.service.js +0 -2
- package/logger/logger.service.metadata.json +0 -1
- package/modal/alert/alert-modal.component.d.ts +0 -10
- package/modal/alert/alert-modal.component.js +0 -38
- package/modal/alert/alert-modal.component.metadata.json +0 -1
- package/modal/confirm-operation/confirm-operation-modal.component.d.ts +0 -10
- package/modal/confirm-operation/confirm-operation-modal.component.js +0 -41
- package/modal/confirm-operation/confirm-operation-modal.component.metadata.json +0 -1
- package/modal/verify-password/verify-password-modal.component.d.ts +0 -18
- package/modal/verify-password/verify-password-modal.component.js +0 -66
- package/modal/verify-password/verify-password-modal.component.metadata.json +0 -1
- package/modal/write-character/write-character-modal-args.d.ts +0 -7
- package/modal/write-character/write-character-modal-args.js +0 -8
- package/modal/write-character/write-character-modal-args.metadata.json +0 -1
- package/modal/write-character/write-character-modal.component.d.ts +0 -25
- package/modal/write-character/write-character-modal.component.js +0 -74
- package/modal/write-character/write-character-modal.component.metadata.json +0 -1
- package/modal/write-value/write-value-modal-args.d.ts +0 -14
- package/modal/write-value/write-value-modal-args.js +0 -13
- package/modal/write-value/write-value-modal-args.metadata.json +0 -1
- package/modal/write-value/write-value-modal.component.d.ts +0 -55
- package/modal/write-value/write-value-modal.component.js +0 -220
- package/modal/write-value/write-value-modal.component.metadata.json +0 -1
- package/modal/write-value/write-value-model-result.d.ts +0 -3
- package/modal/write-value/write-value-model-result.js +0 -0
- package/modal/write-value/write-value-model-result.metadata.json +0 -1
- package/model/air-quality/air-quality-info.d.ts +0 -23
- package/model/air-quality/air-quality-info.js +0 -4
- package/model/air-quality/air-quality-info.metadata.json +0 -1
- package/model/air-quality/air-quality.model.d.ts +0 -7
- package/model/air-quality/air-quality.model.js +0 -0
- package/model/air-quality/air-quality.model.metadata.json +0 -1
- package/model/alarm/alarm.model.d.ts +0 -13
- package/model/alarm/alarm.model.js +0 -0
- package/model/alarm/alarm.model.metadata.json +0 -1
- package/model/bar-graph/FontStyleData.js +0 -0
- package/model/bar-graph/FontStyleData.metadata.json +0 -1
- package/model/bar-graph/bar-graph-direction.d.ts +0 -6
- package/model/bar-graph/bar-graph-direction.js +0 -7
- package/model/bar-graph/bar-graph-direction.metadata.json +0 -1
- package/model/bar-graph/bar-graph.d.ts +0 -26
- package/model/bar-graph/bar-graph.js +0 -0
- package/model/bar-graph/bar-graph.metadata.json +0 -1
- package/model/base/base-element-model.d.ts +0 -5
- package/model/base/base-element-model.js +0 -2
- package/model/base/base-element-model.metadata.json +0 -1
- package/model/base/conditional-control-model.d.ts +0 -6
- package/model/base/conditional-control-model.js +0 -0
- package/model/base/conditional-control-model.metadata.json +0 -1
- package/model/base/conditional-display-model.d.ts +0 -9
- package/model/base/conditional-display-model.js +0 -0
- package/model/base/conditional-display-model.metadata.json +0 -1
- package/model/base/conditional-dynamic-display-model.d.ts +0 -13
- package/model/base/conditional-dynamic-display-model.js +0 -0
- package/model/base/conditional-dynamic-display-model.metadata.json +0 -1
- package/model/base/conditional-enable-model.d.ts +0 -9
- package/model/base/conditional-enable-model.js +0 -0
- package/model/base/conditional-enable-model.metadata.json +0 -1
- package/model/base/font-setting-model.d.ts +0 -8
- package/model/base/font-setting-model.js +0 -0
- package/model/base/font-setting-model.metadata.json +0 -1
- package/model/base/index.js +0 -1
- package/model/base/index.metadata.json +0 -1
- package/model/base/readable-model.d.ts +0 -14
- package/model/base/readable-model.js +0 -0
- package/model/base/readable-model.metadata.json +0 -1
- package/model/base/security-model.js +0 -0
- package/model/base/security-model.metadata.json +0 -1
- package/model/character-display/character-display.d.ts +0 -19
- package/model/character-display/character-display.js +0 -0
- package/model/character-display/character-display.metadata.json +0 -1
- package/model/datetime-display/date-format-type.d.ts +0 -5
- package/model/datetime-display/date-format-type.js +0 -6
- package/model/datetime-display/date-format-type.metadata.json +0 -1
- package/model/datetime-display/datetime-display-settings.d.ts +0 -17
- package/model/datetime-display/datetime-display-settings.js +0 -0
- package/model/datetime-display/datetime-display-settings.metadata.json +0 -1
- package/model/datetime-display/datetime-display.d.ts +0 -20
- package/model/datetime-display/datetime-display.js +0 -0
- package/model/datetime-display/datetime-display.metadata.json +0 -1
- package/model/datetime-display/datetime-separator-type.d.ts +0 -6
- package/model/datetime-display/datetime-separator-type.js +0 -7
- package/model/datetime-display/datetime-separator-type.metadata.json +0 -1
- package/model/datetime-display/time-format-type.d.ts +0 -4
- package/model/datetime-display/time-format-type.js +0 -5
- package/model/datetime-display/time-format-type.metadata.json +0 -1
- package/model/historical-curve/curve-type.d.ts +0 -5
- package/model/historical-curve/curve-type.js +0 -6
- package/model/historical-curve/curve-type.metadata.json +0 -1
- package/model/historical-curve/historical-curve-axis-settings.d.ts +0 -16
- package/model/historical-curve/historical-curve-axis-settings.js +0 -5
- package/model/historical-curve/historical-curve-axis-settings.metadata.json +0 -1
- package/model/historical-curve/historical-curve-chanel.model.d.ts +0 -14
- package/model/historical-curve/historical-curve-chanel.model.js +0 -0
- package/model/historical-curve/historical-curve-chanel.model.metadata.json +0 -1
- package/model/historical-curve/historical-curve.data-settings.d.ts +0 -9
- package/model/historical-curve/historical-curve.data-settings.js +0 -0
- package/model/historical-curve/historical-curve.data-settings.metadata.json +0 -1
- package/model/historical-curve/historical-curve.display-settings.d.ts +0 -19
- package/model/historical-curve/historical-curve.display-settings.js +0 -0
- package/model/historical-curve/historical-curve.display-settings.metadata.json +0 -1
- package/model/historical-curve/historical-curve.model.d.ts +0 -8
- package/model/historical-curve/historical-curve.model.js +0 -0
- package/model/historical-curve/historical-curve.model.metadata.json +0 -1
- package/model/historical-curve/index.js +0 -0
- package/model/historical-curve/index.metadata.json +0 -1
- package/model/hyperlink/hyperlink.model.d.ts +0 -8
- package/model/hyperlink/hyperlink.model.js +0 -0
- package/model/hyperlink/hyperlink.model.metadata.json +0 -1
- package/model/image/image-fill-type.d.ts +0 -4
- package/model/image/image-fill-type.js +0 -5
- package/model/image/image-fill-type.metadata.json +0 -1
- package/model/image/image.d.ts +0 -9
- package/model/image/image.js +0 -0
- package/model/image/image.metadata.json +0 -1
- package/model/index.js +0 -8
- package/model/index.metadata.json +0 -1
- package/model/meter/meter.d.ts +0 -17
- package/model/meter/meter.js +0 -0
- package/model/meter/meter.metadata.json +0 -1
- package/model/numerical-display/index.d.ts +0 -8
- package/model/numerical-display/index.js +0 -2
- package/model/numerical-display/index.metadata.json +0 -1
- package/model/numerical-display/numerical-display.d.ts +0 -29
- package/model/numerical-display/numerical-display.js +0 -0
- package/model/numerical-display/numerical-display.metadata.json +0 -1
- package/model/numerical-display/numerical-operation-settings.d.ts +0 -6
- package/model/numerical-display/numerical-operation-settings.js +0 -0
- package/model/numerical-display/numerical-operation-settings.metadata.json +0 -1
- package/model/numerical-display/numerical-operation-type.d.ts +0 -4
- package/model/numerical-display/numerical-operation-type.js +0 -5
- package/model/numerical-display/numerical-operation-type.metadata.json +0 -1
- package/model/numerical-display/numerical-operation.d.ts +0 -11
- package/model/numerical-display/numerical-operation.js +0 -0
- package/model/numerical-display/numerical-operation.metadata.json +0 -1
- package/model/numerical-display/proportional-conversion.js +0 -0
- package/model/numerical-display/proportional-conversion.metadata.json +0 -1
- package/model/numerical-display/type-settings.js +0 -0
- package/model/numerical-display/type-settings.metadata.json +0 -1
- package/model/numerical-display/zoom.js +0 -0
- package/model/numerical-display/zoom.metadata.json +0 -1
- package/model/pipe/flow-direction-type.d.ts +0 -4
- package/model/pipe/flow-direction-type.js +0 -5
- package/model/pipe/flow-direction-type.metadata.json +0 -1
- package/model/pipe/index.js +0 -1
- package/model/pipe/index.metadata.json +0 -1
- package/model/pipe/pipe.d.ts +0 -17
- package/model/pipe/pipe.js +0 -0
- package/model/pipe/pipe.metadata.json +0 -1
- package/model/poly-line/poly-line-model.d.ts +0 -4
- package/model/poly-line/poly-line-model.js +0 -0
- package/model/poly-line/poly-line-model.metadata.json +0 -1
- package/model/polygon/polygon-model.d.ts +0 -4
- package/model/polygon/polygon-model.js +0 -0
- package/model/polygon/polygon-model.metadata.json +0 -1
- package/model/ring-graph/ring-graph.model.d.ts +0 -33
- package/model/ring-graph/ring-graph.model.js +0 -0
- package/model/ring-graph/ring-graph.model.metadata.json +0 -1
- package/model/settings/background/view-background-fill-type.d.ts +0 -5
- package/model/settings/background/view-background-fill-type.js +0 -6
- package/model/settings/background/view-background-fill-type.metadata.json +0 -1
- package/model/settings/background/view-background.model.d.ts +0 -8
- package/model/settings/background/view-background.model.js +0 -0
- package/model/settings/background/view-background.model.metadata.json +0 -1
- package/model/settings/index.js +0 -2
- package/model/settings/index.metadata.json +0 -1
- package/model/settings/popup/view-popup-backdrop-type.d.ts +0 -4
- package/model/settings/popup/view-popup-backdrop-type.js +0 -5
- package/model/settings/popup/view-popup-backdrop-type.metadata.json +0 -1
- package/model/settings/popup/view-popup-location-type.d.ts +0 -4
- package/model/settings/popup/view-popup-location-type.js +0 -5
- package/model/settings/popup/view-popup-location-type.metadata.json +0 -1
- package/model/settings/popup/view-popup-setting.model.d.ts +0 -17
- package/model/settings/popup/view-popup-setting.model.js +0 -2
- package/model/settings/popup/view-popup-setting.model.metadata.json +0 -1
- package/model/settings/view-settings.model.d.ts +0 -6
- package/model/settings/view-settings.model.js +0 -0
- package/model/settings/view-settings.model.metadata.json +0 -1
- package/model/shared/alarm/alarm-range.model.js +0 -0
- package/model/shared/alarm/alarm-range.model.metadata.json +0 -1
- package/model/shared/arc.model.js +0 -0
- package/model/shared/arc.model.metadata.json +0 -1
- package/model/shared/binary.d.ts +0 -7
- package/model/shared/binary.js +0 -37
- package/model/shared/binary.metadata.json +0 -1
- package/model/shared/condition/bit-condition-item-observer.d.ts +0 -14
- package/model/shared/condition/bit-condition-item-observer.js +0 -53
- package/model/shared/condition/bit-condition-item-observer.metadata.json +0 -1
- package/model/shared/condition/bit-condition-logic.d.ts +0 -4
- package/model/shared/condition/bit-condition-logic.js +0 -5
- package/model/shared/condition/bit-condition-logic.metadata.json +0 -1
- package/model/shared/condition/bit-condition-model.d.ts +0 -8
- package/model/shared/condition/bit-condition-model.js +0 -0
- package/model/shared/condition/bit-condition-model.metadata.json +0 -1
- package/model/shared/condition/bit-condition.d.ts +0 -4
- package/model/shared/condition/bit-condition.js +0 -0
- package/model/shared/condition/bit-condition.metadata.json +0 -1
- package/model/shared/condition/condition-control-result-value.d.ts +0 -5
- package/model/shared/condition/condition-control-result-value.js +0 -0
- package/model/shared/condition/condition-control-result-value.metadata.json +0 -1
- package/model/shared/condition/condition-helper.d.ts +0 -4
- package/model/shared/condition/condition-helper.js +0 -22
- package/model/shared/condition/condition-helper.metadata.json +0 -1
- package/model/shared/condition/condition-item-model.d.ts +0 -10
- package/model/shared/condition/condition-item-model.js +0 -0
- package/model/shared/condition/condition-item-model.metadata.json +0 -1
- package/model/shared/condition/condition-item-observer.d.ts +0 -12
- package/model/shared/condition/condition-item-observer.js +0 -14
- package/model/shared/condition/condition-item-observer.metadata.json +0 -1
- package/model/shared/condition/condition-items-observer.d.ts +0 -5
- package/model/shared/condition/condition-items-observer.js +0 -0
- package/model/shared/condition/condition-items-observer.metadata.json +0 -1
- package/model/shared/condition/condition-items-result-observer.d.ts +0 -16
- package/model/shared/condition/condition-items-result-observer.js +0 -87
- package/model/shared/condition/condition-items-result-observer.metadata.json +0 -1
- package/model/shared/condition/condition-model.js +0 -0
- package/model/shared/condition/condition-model.metadata.json +0 -1
- package/model/shared/condition/condition-type.d.ts +0 -4
- package/model/shared/condition/condition-type.js +0 -5
- package/model/shared/condition/condition-type.metadata.json +0 -1
- package/model/shared/condition/convert-condition-model.d.ts +0 -5
- package/model/shared/condition/convert-condition-model.js +0 -0
- package/model/shared/condition/convert-condition-model.metadata.json +0 -1
- package/model/shared/condition/index.d.ts +0 -11
- package/model/shared/condition/index.js +0 -4
- package/model/shared/condition/index.metadata.json +0 -1
- package/model/shared/condition/relation-condition-result-state.d.ts +0 -6
- package/model/shared/condition/relation-condition-result-state.js +0 -8
- package/model/shared/condition/relation-condition-result-state.metadata.json +0 -1
- package/model/shared/condition/relation-condition-result.d.ts +0 -8
- package/model/shared/condition/relation-condition-result.js +0 -7
- package/model/shared/condition/relation-condition-result.metadata.json +0 -1
- package/model/shared/condition/relation-type.d.ts +0 -5
- package/model/shared/condition/relation-type.js +0 -6
- package/model/shared/condition/relation-type.metadata.json +0 -1
- package/model/shared/condition/relational-operator.d.ts +0 -8
- package/model/shared/condition/relational-operator.js +0 -9
- package/model/shared/condition/relational-operator.metadata.json +0 -1
- package/model/shared/condition/variable-value-logic-model.d.ts +0 -11
- package/model/shared/condition/variable-value-logic-model.js +0 -0
- package/model/shared/condition/variable-value-logic-model.metadata.json +0 -1
- package/model/shared/condition/variable-value-type.d.ts +0 -4
- package/model/shared/condition/variable-value-type.js +0 -5
- package/model/shared/condition/variable-value-type.metadata.json +0 -1
- package/model/shared/condition/word-condition-item-observer.d.ts +0 -21
- package/model/shared/condition/word-condition-item-observer.js +0 -165
- package/model/shared/condition/word-condition-item-observer.metadata.json +0 -1
- package/model/shared/condition/word-condition-model.d.ts +0 -8
- package/model/shared/condition/word-condition-model.js +0 -0
- package/model/shared/condition/word-condition-model.metadata.json +0 -1
- package/model/shared/condition/word-condition.d.ts +0 -5
- package/model/shared/condition/word-condition.js +0 -0
- package/model/shared/condition/word-condition.metadata.json +0 -1
- package/model/shared/data-type/display-data-type.d.ts +0 -5
- package/model/shared/data-type/display-data-type.js +0 -6
- package/model/shared/data-type/display-data-type.metadata.json +0 -1
- package/model/shared/data-type/fbox-data-type.d.ts +0 -15
- package/model/shared/data-type/fbox-data-type.js +0 -16
- package/model/shared/data-type/fbox-data-type.metadata.json +0 -1
- package/model/shared/data-type/fcloud-data-Type.d.ts +0 -8
- package/model/shared/data-type/fcloud-data-Type.js +0 -9
- package/model/shared/data-type/fcloud-data-Type.metadata.json +0 -1
- package/model/shared/dynamic-display/dynamic-behavior-type.d.ts +0 -5
- package/model/shared/dynamic-display/dynamic-behavior-type.js +0 -6
- package/model/shared/dynamic-display/dynamic-behavior-type.metadata.json +0 -1
- package/model/shared/dynamic-display/dynamic-display-behavior-model.d.ts +0 -5
- package/model/shared/dynamic-display/dynamic-display-behavior-model.js +0 -0
- package/model/shared/dynamic-display/dynamic-display-behavior-model.metadata.json +0 -1
- package/model/shared/dynamic-display/dynamic-display-model.js +0 -0
- package/model/shared/dynamic-display/dynamic-display-model.metadata.json +0 -1
- package/model/shared/dynamic-display/dynamic-display-result-model.d.ts +0 -7
- package/model/shared/dynamic-display/dynamic-display-result-model.js +0 -7
- package/model/shared/dynamic-display/dynamic-display-result-model.metadata.json +0 -1
- package/model/shared/dynamic-display/dynamic-display.d.ts +0 -11
- package/model/shared/dynamic-display/dynamic-display.js +0 -35
- package/model/shared/dynamic-display/dynamic-display.metadata.json +0 -1
- package/model/shared/graph/custom-style.d.ts +0 -14
- package/model/shared/graph/custom-style.js +0 -0
- package/model/shared/graph/custom-style.metadata.json +0 -1
- package/model/shared/graph/graph-setting.d.ts +0 -10
- package/model/shared/graph/graph-setting.js +0 -0
- package/model/shared/graph/graph-setting.metadata.json +0 -1
- package/model/shared/index.js +0 -3
- package/model/shared/index.metadata.json +0 -1
- package/model/shared/point.model.js +0 -0
- package/model/shared/point.model.metadata.json +0 -1
- package/model/shared/rotation/rotation-behavior-model.d.ts +0 -4
- package/model/shared/rotation/rotation-behavior-model.js +0 -0
- package/model/shared/rotation/rotation-behavior-model.metadata.json +0 -1
- package/model/shared/rotation/rotation-behavior.d.ts +0 -9
- package/model/shared/rotation/rotation-behavior.js +0 -101
- package/model/shared/rotation/rotation-behavior.metadata.json +0 -1
- package/model/shared/rotation/rotation-direction-type.d.ts +0 -4
- package/model/shared/rotation/rotation-direction-type.js +0 -5
- package/model/shared/rotation/rotation-direction-type.metadata.json +0 -1
- package/model/shared/rotation/rotation-model.d.ts +0 -14
- package/model/shared/rotation/rotation-model.js +0 -0
- package/model/shared/rotation/rotation-model.metadata.json +0 -1
- package/model/shared/rotation/rotation-observer-model.d.ts +0 -4
- package/model/shared/rotation/rotation-observer-model.js +0 -0
- package/model/shared/rotation/rotation-observer-model.metadata.json +0 -1
- package/model/shared/rotation/rotation-observer.d.ts +0 -11
- package/model/shared/rotation/rotation-observer.js +0 -28
- package/model/shared/rotation/rotation-observer.metadata.json +0 -1
- package/model/shared/scale/scale-mark.model.d.ts +0 -6
- package/model/shared/scale/scale-mark.model.js +0 -0
- package/model/shared/scale/scale-mark.model.metadata.json +0 -1
- package/model/shared/scale/scale-model.d.ts +0 -20
- package/model/shared/scale/scale-model.js +0 -0
- package/model/shared/scale/scale-model.metadata.json +0 -1
- package/model/shared/size.model.d.ts +0 -7
- package/model/shared/size.model.js +0 -12
- package/model/shared/size.model.metadata.json +0 -1
- package/model/shared/state/index.js +0 -1
- package/model/shared/state/index.metadata.json +0 -1
- package/model/shared/state/state.d.ts +0 -8
- package/model/shared/state/state.js +0 -9
- package/model/shared/state/state.metadata.json +0 -1
- package/model/shared/text/font.js +0 -0
- package/model/shared/text/font.metadata.json +0 -1
- package/model/shared/text/index.js +0 -0
- package/model/shared/text/index.metadata.json +0 -1
- package/model/shared/text/text.d.ts +0 -5
- package/model/shared/text/text.js +0 -0
- package/model/shared/text/text.metadata.json +0 -1
- package/model/shared/translation/translation-behavior-model.d.ts +0 -4
- package/model/shared/translation/translation-behavior-model.js +0 -0
- package/model/shared/translation/translation-behavior-model.metadata.json +0 -1
- package/model/shared/translation/translation-behavior.d.ts +0 -12
- package/model/shared/translation/translation-behavior.js +0 -63
- package/model/shared/translation/translation-behavior.metadata.json +0 -1
- package/model/shared/translation/translation-direction-type.d.ts +0 -4
- package/model/shared/translation/translation-direction-type.js +0 -5
- package/model/shared/translation/translation-direction-type.metadata.json +0 -1
- package/model/shared/translation/translation-model.js +0 -0
- package/model/shared/translation/translation-model.metadata.json +0 -1
- package/model/shared/translation/translation-observer-model.d.ts +0 -4
- package/model/shared/translation/translation-observer-model.js +0 -0
- package/model/shared/translation/translation-observer-model.metadata.json +0 -1
- package/model/shared/translation/translation-observer.d.ts +0 -10
- package/model/shared/translation/translation-observer.js +0 -27
- package/model/shared/translation/translation-observer.metadata.json +0 -1
- package/model/shared/variable/variable-identifier.model.d.ts +0 -5
- package/model/shared/variable/variable-identifier.model.js +0 -0
- package/model/shared/variable/variable-identifier.model.metadata.json +0 -1
- package/model/shared/variable/variable-name.model.js +0 -0
- package/model/shared/variable/variable-name.model.metadata.json +0 -1
- package/model/straight-line/straight-line-model.d.ts +0 -4
- package/model/straight-line/straight-line-model.js +0 -0
- package/model/straight-line/straight-line-model.metadata.json +0 -1
- package/model/switch-indicator-light/bit-indicator-light-settings.js +0 -0
- package/model/switch-indicator-light/bit-indicator-light-settings.metadata.json +0 -1
- package/model/switch-indicator-light/bit-switch-operation.d.ts +0 -6
- package/model/switch-indicator-light/bit-switch-operation.js +0 -7
- package/model/switch-indicator-light/bit-switch-operation.metadata.json +0 -1
- package/model/switch-indicator-light/bit-switch-settings.d.ts +0 -11
- package/model/switch-indicator-light/bit-switch-settings.js +0 -0
- package/model/switch-indicator-light/bit-switch-settings.metadata.json +0 -1
- package/model/switch-indicator-light/fault-flicker.d.ts +0 -5
- package/model/switch-indicator-light/fault-flicker.js +0 -0
- package/model/switch-indicator-light/fault-flicker.metadata.json +0 -1
- package/model/switch-indicator-light/flicker.d.ts +0 -5
- package/model/switch-indicator-light/flicker.js +0 -6
- package/model/switch-indicator-light/flicker.metadata.json +0 -1
- package/model/switch-indicator-light/index.d.ts +0 -14
- package/model/switch-indicator-light/index.js +0 -5
- package/model/switch-indicator-light/index.metadata.json +0 -1
- package/model/switch-indicator-light/indicator-light-fault-flicker.d.ts +0 -5
- package/model/switch-indicator-light/indicator-light-fault-flicker.js +0 -0
- package/model/switch-indicator-light/indicator-light-fault-flicker.metadata.json +0 -1
- package/model/switch-indicator-light/indicator-light-settings.d.ts +0 -7
- package/model/switch-indicator-light/indicator-light-settings.js +0 -0
- package/model/switch-indicator-light/indicator-light-settings.metadata.json +0 -1
- package/model/switch-indicator-light/indicator-light-type.d.ts +0 -4
- package/model/switch-indicator-light/indicator-light-type.js +0 -5
- package/model/switch-indicator-light/indicator-light-type.metadata.json +0 -1
- package/model/switch-indicator-light/switch-indicator-light.d.ts +0 -33
- package/model/switch-indicator-light/switch-indicator-light.js +0 -0
- package/model/switch-indicator-light/switch-indicator-light.metadata.json +0 -1
- package/model/switch-indicator-light/switch-indicator-state.d.ts +0 -8
- package/model/switch-indicator-light/switch-indicator-state.js +0 -0
- package/model/switch-indicator-light/switch-indicator-state.metadata.json +0 -1
- package/model/switch-indicator-light/switch-settings.d.ts +0 -7
- package/model/switch-indicator-light/switch-settings.js +0 -0
- package/model/switch-indicator-light/switch-settings.metadata.json +0 -1
- package/model/switch-indicator-light/switch-type.d.ts +0 -4
- package/model/switch-indicator-light/switch-type.js +0 -5
- package/model/switch-indicator-light/switch-type.metadata.json +0 -1
- package/model/switch-indicator-light/word-indicator-light-settings.js +0 -0
- package/model/switch-indicator-light/word-indicator-light-settings.metadata.json +0 -1
- package/model/switch-indicator-light/word-switch-operation.d.ts +0 -5
- package/model/switch-indicator-light/word-switch-operation.js +0 -6
- package/model/switch-indicator-light/word-switch-operation.metadata.json +0 -1
- package/model/switch-indicator-light/word-switch-settings.d.ts +0 -13
- package/model/switch-indicator-light/word-switch-settings.js +0 -0
- package/model/switch-indicator-light/word-switch-settings.metadata.json +0 -1
- package/model/table/table-model.d.ts +0 -9
- package/model/table/table-model.js +0 -0
- package/model/table/table-model.metadata.json +0 -1
- package/model/text/text.model.d.ts +0 -7
- package/model/text/text.model.js +0 -0
- package/model/text/text.model.metadata.json +0 -1
- package/model/video/video.model.d.ts +0 -8
- package/model/video/video.model.js +0 -0
- package/model/video/video.model.metadata.json +0 -1
- package/model/view-operation/index.js +0 -1
- package/model/view-operation/index.metadata.json +0 -1
- package/model/view-operation/view-operation-element.model.d.ts +0 -19
- package/model/view-operation/view-operation-element.model.js +0 -0
- package/model/view-operation/view-operation-element.model.metadata.json +0 -1
- package/model/view-operation/view-operation-type.d.ts +0 -18
- package/model/view-operation/view-operation-type.js +0 -19
- package/model/view-operation/view-operation-type.metadata.json +0 -1
- package/model/weather/weather-info.d.ts +0 -11
- package/model/weather/weather-info.js +0 -2
- package/model/weather/weather-info.metadata.json +0 -1
- package/model/weather/weather.model.d.ts +0 -7
- package/model/weather/weather.model.js +0 -0
- package/model/weather/weather.model.metadata.json +0 -1
- package/public_api.d.ts +0 -14
- package/public_api.js +0 -11
- package/public_api.metadata.json +0 -1
- package/remote/communication/variable/remote-variable-communicator.d.ts +0 -34
- package/remote/communication/variable/remote-variable-communicator.js +0 -237
- package/remote/communication/variable/remote-variable-communicator.metadata.json +0 -1
- package/remote/communication/variable/remote-variable-protocol.d.ts +0 -16
- package/remote/communication/variable/remote-variable-protocol.js +0 -0
- package/remote/communication/variable/remote-variable-protocol.metadata.json +0 -1
- package/remote/config/graph/get-released-graph-state-result.d.ts +0 -6
- package/remote/config/graph/get-released-graph-state-result.js +0 -0
- package/remote/config/graph/get-released-graph-state-result.metadata.json +0 -1
- package/remote/config/graph/get-released-graph-states.d.ts +0 -4
- package/remote/config/graph/get-released-graph-states.js +0 -0
- package/remote/config/graph/get-released-graph-states.metadata.json +0 -1
- package/remote/config/graph/graph-state-key.d.ts +0 -6
- package/remote/config/graph/graph-state-key.js +0 -0
- package/remote/config/graph/graph-state-key.metadata.json +0 -1
- package/remote/config/graph/graph-state-result.d.ts +0 -5
- package/remote/config/graph/graph-state-result.js +0 -0
- package/remote/config/graph/graph-state-result.metadata.json +0 -1
- package/remote/config/graph/graph-state.js +0 -0
- package/remote/config/graph/graph-state.metadata.json +0 -1
- package/remote/config/graph/remote-graph-protocol.d.ts +0 -11
- package/remote/config/graph/remote-graph-protocol.js +0 -0
- package/remote/config/graph/remote-graph-protocol.metadata.json +0 -1
- package/remote/config/graph/remote-graph-store.d.ts +0 -16
- package/remote/config/graph/remote-graph-store.js +0 -101
- package/remote/config/graph/remote-graph-store.metadata.json +0 -1
- package/remote/config/image/remote-image-protocol.d.ts +0 -4
- package/remote/config/image/remote-image-protocol.js +0 -0
- package/remote/config/image/remote-image-protocol.metadata.json +0 -1
- package/remote/config/image/remote-image-store.d.ts +0 -8
- package/remote/config/image/remote-image-store.js +0 -19
- package/remote/config/image/remote-image-store.metadata.json +0 -1
- package/remote/config/view/remote-view-protocol.d.ts +0 -8
- package/remote/config/view/remote-view-protocol.js +0 -0
- package/remote/config/view/remote-view-protocol.metadata.json +0 -1
- package/remote/config/view/remote-view-store.d.ts +0 -13
- package/remote/config/view/remote-view-store.js +0 -39
- package/remote/config/view/remote-view-store.metadata.json +0 -1
- package/remote/config/view/view-result.js +0 -0
- package/remote/config/view/view-result.metadata.json +0 -1
- package/remote/index.d.ts +0 -14
- package/remote/index.js +0 -4
- package/remote/index.metadata.json +0 -1
- package/security/index.js +0 -0
- package/security/index.metadata.json +0 -1
- package/security/security-checker.js +0 -0
- package/security/security-checker.metadata.json +0 -1
- package/service/index.js +0 -0
- package/service/index.metadata.json +0 -1
- package/service/operation-record/create-operation-record-args.d.ts +0 -5
- package/service/operation-record/create-operation-record-args.js +0 -0
- package/service/operation-record/create-operation-record-args.metadata.json +0 -1
- package/service/operation-record/index.d.ts +0 -3
- package/service/operation-record/index.js +0 -0
- package/service/operation-record/index.metadata.json +0 -1
- package/service/operation-record/operation-record.service.d.ts +0 -4
- package/service/operation-record/operation-record.service.js +0 -0
- package/service/operation-record/operation-record.service.metadata.json +0 -1
- package/service/operation-record/variable-option.model.d.ts +0 -5
- package/service/operation-record/variable-option.model.js +0 -0
- package/service/operation-record/variable-option.model.metadata.json +0 -1
- package/service/permission-checker.js +0 -0
- package/service/permission-checker.metadata.json +0 -1
- package/service/released-variable/index.js +0 -0
- package/service/released-variable/index.metadata.json +0 -1
- package/service/released-variable/released-variable.service.d.ts +0 -4
- package/service/released-variable/released-variable.service.js +0 -0
- package/service/released-variable/released-variable.service.metadata.json +0 -1
- package/service/video/index.js +0 -0
- package/service/video/index.metadata.json +0 -1
- package/service/video/video-url.js +0 -0
- package/service/video/video-url.metadata.json +0 -1
- package/service/video/video.service.d.ts +0 -4
- package/service/video/video.service.js +0 -0
- package/service/video/video.service.metadata.json +0 -1
- package/service/weather.service.d.ts +0 -4
- package/service/weather.service.js +0 -0
- package/service/weather.service.metadata.json +0 -1
- package/settings/display-mode.d.ts +0 -10
- package/settings/display-mode.js +0 -11
- package/settings/display-mode.metadata.json +0 -1
- package/settings/global-settings.d.ts +0 -7
- package/settings/global-settings.js +0 -13
- package/settings/global-settings.metadata.json +0 -1
- package/settings/index.js +0 -3
- package/settings/index.metadata.json +0 -1
- package/settings/view-resize-mode.d.ts +0 -10
- package/settings/view-resize-mode.js +0 -11
- package/settings/view-resize-mode.metadata.json +0 -1
- package/shared/config-is-empty-error.d.ts +0 -3
- package/shared/config-is-empty-error.metadata.json +0 -1
- package/shared/disposable.d.ts +0 -3
- package/shared/disposable.js +0 -0
- package/shared/disposable.metadata.json +0 -1
- package/shared/graph-extended-style.js +0 -0
- package/shared/graph-extended-style.metadata.json +0 -1
- package/shared/gui-consts.d.ts +0 -32
- package/shared/gui-consts.js +0 -32
- package/shared/gui-consts.metadata.json +0 -1
- package/shared/index.js +0 -3
- package/shared/index.metadata.json +0 -1
- package/shared/operation-helper.d.ts +0 -6
- package/shared/operation-helper.js +0 -38
- package/shared/operation-helper.metadata.json +0 -1
- package/utils/access-permission.d.ts +0 -5
- package/utils/access-permission.js +0 -6
- package/utils/access-permission.metadata.json +0 -1
- package/utils/access-permission.service.d.ts +0 -11
- package/utils/access-permission.service.js +0 -30
- package/utils/access-permission.service.metadata.json +0 -1
- package/utils/auto-focus.directive.d.ts +0 -6
- package/utils/auto-focus.directive.js +0 -27
- package/utils/auto-focus.directive.metadata.json +0 -1
- package/utils/bs-modal-drag.directive.d.ts +0 -7
- package/utils/bs-modal-drag.directive.js +0 -38
- package/utils/bs-modal-drag.directive.metadata.json +0 -1
- package/utils/data-type/data-type.service.d.ts +0 -57
- package/utils/data-type/data-type.service.js +0 -155
- package/utils/data-type/data-type.service.metadata.json +0 -1
- package/utils/data-type/fbox-data-type.service.d.ts +0 -54
- package/utils/data-type/fbox-data-type.service.js +0 -300
- package/utils/data-type/fbox-data-type.service.metadata.json +0 -1
- package/utils/data-type/fcloud-data-type.service.d.ts +0 -55
- package/utils/data-type/fcloud-data-type.service.js +0 -203
- package/utils/data-type/fcloud-data-type.service.metadata.json +0 -1
- package/utils/fraction-digit.service.d.ts +0 -41
- package/utils/fraction-digit.service.js +0 -133
- package/utils/fraction-digit.service.metadata.json +0 -1
- package/utils/graph-util.d.ts +0 -5
- package/utils/graph-util.js +0 -19
- package/utils/graph-util.metadata.json +0 -1
- package/utils/guid.d.ts +0 -6
- package/utils/guid.js +0 -27
- package/utils/guid.metadata.json +0 -1
- package/utils/index.d.ts +0 -7
- package/utils/index.js +0 -7
- package/utils/index.metadata.json +0 -1
- package/utils/numerical-operation-type.d.ts +0 -4
- package/utils/numerical-operation-type.js +0 -5
- package/utils/numerical-operation-type.metadata.json +0 -1
- package/utils/numerical-operation.service.d.ts +0 -17
- package/utils/numerical-operation.service.js +0 -177
- package/utils/numerical-operation.service.metadata.json +0 -1
- package/utils/variable-util.d.ts +0 -5
- package/utils/variable-util.js +0 -11
- package/utils/variable-util.metadata.json +0 -1
- package/view/popup-view.service.d.ts +0 -7
- package/view/popup-view.service.js +0 -0
- package/view/popup-view.service.metadata.json +0 -1
- package/view/view.service.d.ts +0 -6
- package/view/view.service.js +0 -20
- package/view/view.service.metadata.json +0 -1
- /package/{assets → src/assets}/img/abnormal.svg +0 -0
- /package/{assets → src/assets}/img/alert.svg +0 -0
- /package/{assets → src/assets}/img/disabled.svg +0 -0
- /package/{assets → src/assets}/img/first_page.svg +0 -0
- /package/{assets → src/assets}/img/last_page.svg +0 -0
- /package/{assets → src/assets}/img/loading.svg +0 -0
- /package/{assets → src/assets}/img/next_page.svg +0 -0
- /package/{assets → src/assets}/img/offline.svg +0 -0
- /package/{assets → src/assets}/img/previous_page.svg +0 -0
- /package/{assets → src/assets}/img/unbind.svg +0 -0
- /package/{assets → src/assets}/img/video.jpg +0 -0
- /package/{assets → src/assets}/img/weather/blizzard.png +0 -0
- /package/{assets → src/assets}/img/weather/cloudy.png +0 -0
- /package/{assets → src/assets}/img/weather/extraordinary-heavy-rain.png +0 -0
- /package/{assets → src/assets}/img/weather/fog.png +0 -0
- /package/{assets → src/assets}/img/weather/haze.png +0 -0
- /package/{assets → src/assets}/img/weather/heavy-rain.png +0 -0
- /package/{assets → src/assets}/img/weather/heavy-rainstorm.png +0 -0
- /package/{assets → src/assets}/img/weather/heavy-snow.png +0 -0
- /package/{assets → src/assets}/img/weather/light-rain.png +0 -0
- /package/{assets → src/assets}/img/weather/light-snow.png +0 -0
- /package/{assets → src/assets}/img/weather/location.png +0 -0
- /package/{assets → src/assets}/img/weather/medium-snow.png +0 -0
- /package/{assets → src/assets}/img/weather/moderate-rain.png +0 -0
- /package/{assets → src/assets}/img/weather/overcast.png +0 -0
- /package/{assets → src/assets}/img/weather/rain-icon.png +0 -0
- /package/{assets → src/assets}/img/weather/rainstorm.png +0 -0
- /package/{assets → src/assets}/img/weather/sandstorm.png +0 -0
- /package/{assets → src/assets}/img/weather/severe-haze.png +0 -0
- /package/{assets → src/assets}/img/weather/shower.png +0 -0
- /package/{assets → src/assets}/img/weather/sink-float.png +0 -0
- /package/{assets → src/assets}/img/weather/sleet.png +0 -0
- /package/{assets → src/assets}/img/weather/snow-shower.png +0 -0
- /package/{assets → src/assets}/img/weather/strong-sandstorm.png +0 -0
- /package/{assets → src/assets}/img/weather/sunny.png +0 -0
- /package/{assets → src/assets}/img/weather/thick-fog.png +0 -0
- /package/{assets → src/assets}/img/weather/thunder-shower.png +0 -0
- /package/{assets → src/assets}/img/weather/windy.png +0 -0
- /package/{communication/index.d.ts → src/communication/index.ts} +0 -0
- /package/{communication/variable/index.d.ts → src/communication/variable/index.ts} +0 -0
- /package/{config/alarm/index.d.ts → src/config/alarm/index.ts} +0 -0
- /package/{config/history-data/index.d.ts → src/config/history-data/index.ts} +0 -0
- /package/{config/variable/index.d.ts → src/config/variable/index.ts} +0 -0
- /package/{core/index.d.ts → src/core/index.ts} +0 -0
- /package/{elements/base/index.d.ts → src/elements/base/index.ts} +0 -0
- /package/{elements/historical-curve/historical-curve.element.option.d.ts → src/elements/historical-curve/historical-curve.element.option.ts} +0 -0
- /package/{elements/historical-curve/historical-curve.time-period.d.ts → src/elements/historical-curve/historical-curve.time-period.ts} +0 -0
- /package/{gui → src/gui}/gui.component.html +0 -0
- /package/{localization/index.d.ts → src/localization/index.ts} +0 -0
- /package/{logger/index.d.ts → src/logger/index.ts} +0 -0
- /package/{modal → src/modal}/alert/alert-modal.component.html +0 -0
- /package/{modal → src/modal}/alert/alert-modal.component.less +0 -0
- /package/{modal → src/modal}/confirm-operation/confirm-operation-modal.component.html +0 -0
- /package/{modal → src/modal}/confirm-operation/confirm-operation-modal.component.less +0 -0
- /package/{modal → src/modal}/verify-password/verify-password-modal.component.html +0 -0
- /package/{modal → src/modal}/verify-password/verify-password-modal.component.less +0 -0
- /package/{modal → src/modal}/write-character/write-character-modal.component.html +0 -0
- /package/{modal → src/modal}/write-character/write-character-modal.component.less +0 -0
- /package/{modal → src/modal}/write-value/write-value-modal.component.html +0 -0
- /package/{modal → src/modal}/write-value/write-value-modal.component.less +0 -0
- /package/{model/bar-graph/FontStyleData.d.ts → src/model/bar-graph/FontStyleData.ts} +0 -0
- /package/{model/base/index.d.ts → src/model/base/index.ts} +0 -0
- /package/{model/base/security-model.d.ts → src/model/base/security-model.ts} +0 -0
- /package/{model/historical-curve/index.d.ts → src/model/historical-curve/index.ts} +0 -0
- /package/{model/index.d.ts → src/model/index.ts} +0 -0
- /package/{model/numerical-display/proportional-conversion.d.ts → src/model/numerical-display/proportional-conversion.ts} +0 -0
- /package/{model/numerical-display/type-settings.d.ts → src/model/numerical-display/type-settings.ts} +0 -0
- /package/{model/numerical-display/zoom.d.ts → src/model/numerical-display/zoom.ts} +0 -0
- /package/{model/pipe/index.d.ts → src/model/pipe/index.ts} +0 -0
- /package/{model/settings/index.d.ts → src/model/settings/index.ts} +0 -0
- /package/{model/shared/alarm/alarm-range.model.d.ts → src/model/shared/alarm/alarm-range.model.ts} +0 -0
- /package/{model/shared/arc.model.d.ts → src/model/shared/arc.model.ts} +0 -0
- /package/{model/shared/condition/condition-model.d.ts → src/model/shared/condition/condition-model.ts} +0 -0
- /package/{model/shared/dynamic-display/dynamic-display-model.d.ts → src/model/shared/dynamic-display/dynamic-display-model.ts} +0 -0
- /package/{model/shared/index.d.ts → src/model/shared/index.ts} +0 -0
- /package/{model/shared/point.model.d.ts → src/model/shared/point.model.ts} +0 -0
- /package/{model/shared/state/index.d.ts → src/model/shared/state/index.ts} +0 -0
- /package/{model/shared/text/font.d.ts → src/model/shared/text/font.ts} +0 -0
- /package/{model/shared/text/index.d.ts → src/model/shared/text/index.ts} +0 -0
- /package/{model/shared/translation/translation-model.d.ts → src/model/shared/translation/translation-model.ts} +0 -0
- /package/{model/shared/variable/variable-name.model.d.ts → src/model/shared/variable/variable-name.model.ts} +0 -0
- /package/{model/switch-indicator-light/bit-indicator-light-settings.d.ts → src/model/switch-indicator-light/bit-indicator-light-settings.ts} +0 -0
- /package/{model/switch-indicator-light/word-indicator-light-settings.d.ts → src/model/switch-indicator-light/word-indicator-light-settings.ts} +0 -0
- /package/{model/view-operation/index.d.ts → src/model/view-operation/index.ts} +0 -0
- /package/{remote/config/graph/graph-state.d.ts → src/remote/config/graph/graph-state.ts} +0 -0
- /package/{remote/config/view/view-result.d.ts → src/remote/config/view/view-result.ts} +0 -0
- /package/{security/index.d.ts → src/security/index.ts} +0 -0
- /package/{security/security-checker.d.ts → src/security/security-checker.ts} +0 -0
- /package/{service/index.d.ts → src/service/index.ts} +0 -0
- /package/{service/permission-checker.d.ts → src/service/permission-checker.ts} +0 -0
- /package/{service/released-variable/index.d.ts → src/service/released-variable/index.ts} +0 -0
- /package/{service/video/index.d.ts → src/service/video/index.ts} +0 -0
- /package/{service/video/video-url.d.ts → src/service/video/video-url.ts} +0 -0
- /package/{settings/index.d.ts → src/settings/index.ts} +0 -0
- /package/{shared/config-is-empty-error.js → src/shared/config-is-empty-error.ts} +0 -0
- /package/{shared/graph-extended-style.d.ts → src/shared/graph-extended-style.ts} +0 -0
- /package/{shared/index.d.ts → src/shared/index.ts} +0 -0
|
@@ -0,0 +1,487 @@
|
|
|
1
|
+
import { ConfigStore, GraphResult, GraphStore, HistoryDataStore, ImageStore, ViewModel, ViewStore, VariableStore } from '@flexem/fc-gui';
|
|
2
|
+
import { Observable, of } from 'rxjs';
|
|
3
|
+
import { DefaultHistoryDataStore } from '../../gui/default-history-data.store';
|
|
4
|
+
import { DefaultVariableStore } from '../../gui/default-config-store';
|
|
5
|
+
|
|
6
|
+
export class BarGraphStore implements GraphStore {
|
|
7
|
+
|
|
8
|
+
getGraph(graphId: string | number, stateId: number): Observable<GraphResult> {
|
|
9
|
+
return of(GraphResult.failed());
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export class BarViewStore implements ViewStore {
|
|
14
|
+
|
|
15
|
+
constructor() {
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
//#region:svg
|
|
19
|
+
|
|
20
|
+
// tslint:disable:max-line-length
|
|
21
|
+
private readonly svg = `<svg width="802px" height="482px" ZL="0 0 802 482" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
22
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)" clip-path="url(#mainClip3756)">
|
|
23
|
+
<g transform="matrix(1, 0, 0, 1, 1, 1)">
|
|
24
|
+
<g transform="matrix(1, 0, 0, 1, 320, 230)" data-model="{"id":-4,"category":"Meter","min":0,"max":100}">
|
|
25
|
+
<path d="M 0,0 L 200,0 L 200,200 L 0,200 z" fill="transparent" stroke="none" transform="matrix(1, 0, 0, 1, 1, 1)" />
|
|
26
|
+
<path d="M 0,0 L 200,0 L 200,200 L 0,200 z" fill="none" stroke="transparent" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 1, 1)" />
|
|
27
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)">
|
|
28
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)" clip-path="url(#CLIP3758)">
|
|
29
|
+
<path d="M 29.289321881345245,170.71067811865476 L 29.28932188134526,170.71067811865476 A 100,100 270 1,1 170.71067811865476,170.71067811865476 M 100,200" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 1.000000000000007, 1.000000000000007)" />
|
|
30
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.6705466226192044, -0.7418673917176697, 0.7418673917176697, -0.6705466226192044, 24.342157582786577, 164.3853004333545)" />
|
|
31
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.5923308088049017, -0.8056948634194777, 0.8056948634194777, -0.5923308088049017, 18.72919041024899, 156.88492983830108)" />
|
|
32
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.5087427116122141, -0.8609186101957906, 0.8609186101957906, -0.5087427116122141, 13.843166047872018, 148.89423112384986)" />
|
|
33
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.42099055842640287, -0.9070650195635511, 0.9070650195635511, -0.42099055842640287, 9.731952162485749, 140.47958716348964)" />
|
|
34
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.23718895420606256, -0.9714635350864357, 0.9714635350864357, -0.23718895420606256, 3.9748761700545803, 122.6780935851064)" />
|
|
35
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.14282527191820135, -0.9897479182607518, 0.9897479182607518, -0.14282527191820135, 2.3762709955159975, 113.45033104769077)" />
|
|
36
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.04769050791967295, -0.9988621603876902, 0.9988621603876902, -0.04769050791967295, 1.6492159931171166, 104.11335097737462)" />
|
|
37
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.04769050791967258, -0.9988621603876902, 0.9988621603876902, 0.04769050791967258, 1.7990009060403873, 94.74945279129098)" />
|
|
38
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.23718895420606134, -0.9714635350864359, 0.9714635350864359, 0.23718895420606134, 4.719832103674684, 76.27076296185793)" />
|
|
39
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.33016373405114297, -0.943923677379377, 0.943923677379377, 0.33016373405114297, 7.470172887755587, 67.32058588677151)" />
|
|
40
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.42099055842640176, -0.9070650195635517, 0.9070650195635517, 0.42099055842640176, 11.054186646581202, 58.671530304164186)" />
|
|
41
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.508742711612213, -0.8609186101957912, 0.8609186101957912, 0.508742711612213, 15.441009855439262, 50.40182159843602)" />
|
|
42
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.6705466226192054, -0.7418673917176687, 0.7418673917176687, 0.6705466226192054, 26.44819024759241, 35.28466477531527)" />
|
|
43
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.7418673917176685, -0.6705466226192057, 0.6705466226192057, 0.7418673917176685, 32.954629983985086, 28.554222912398227)" />
|
|
44
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.8056948634194788, -0.5923308088049004, 0.5923308088049004, 0.8056948634194788, 40.05406577217627, 22.449939988678825)" />
|
|
45
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.8609186101957905, -0.5087427116122141, 0.5087427116122141, 0.8609186101957905, 47.69787432072193, 17.038853663006492)" />
|
|
46
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9439236773793771, -0.3301637340511425, 0.3301637340511425, 0.9439236773793771, 64.35593879052692, 8.507141213581987)" />
|
|
47
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9714635350864356, -0.23718895420606262, 0.23718895420606262, 0.9714635350864356, 73.21961950882222, 5.464788037294806)" />
|
|
48
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9897479182607519, -0.14282527191820055, 0.14282527191820055, 0.9897479182607519, 82.3325279647408, 3.2734336323050126)" />
|
|
49
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9988621603876902, -0.04769050791967301, 0.04769050791967301, 0.9988621603876902, 91.61225655995649, 1.9487858189636655)" />
|
|
50
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9988621603876902, 0.047690507919672456, -0.047690507919672456, 0.9988621603876902, 110.38774344004345, 1.9487858189636598)" />
|
|
51
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9897479182607519, 0.14282527191820088, -0.14282527191820088, 0.9897479182607519, 119.66747203525922, 3.2734336323050104)" />
|
|
52
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9714635350864357, 0.23718895420606223, -0.23718895420606223, 0.9714635350864357, 128.78038049117777, 5.464788037294799)" />
|
|
53
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9439236773793772, 0.3301637340511423, -0.3301637340511423, 0.9439236773793772, 137.64406120947305, 8.507141213581962)" />
|
|
54
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.8609186101957906, 0.508742711612214, -0.508742711612214, 0.8609186101957906, 154.30212567927805, 17.03885366300646)" />
|
|
55
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.8056948634194778, 0.5923308088049016, -0.5923308088049016, 0.8056948634194778, 161.94593422782373, 22.44993998867882)" />
|
|
56
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.7418673917176701, 0.6705466226192038, -0.6705466226192038, 0.7418673917176701, 169.04537001601494, 28.554222912398256)" />
|
|
57
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.6705466226192044, 0.7418673917176696, -0.7418673917176696, 0.6705466226192044, 175.55180975240762, 35.2846647753153)" />
|
|
58
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.5087427116122156, 0.8609186101957896, -0.8609186101957896, 0.5087427116122156, 186.55899014456074, 50.40182159843604)" />
|
|
59
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.42099055842640215, 0.9070650195635515, -0.9070650195635515, 0.42099055842640215, 190.94581335341874, 58.671530304164136)" />
|
|
60
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.3301637340511432, 0.9439236773793769, -0.9439236773793769, 0.3301637340511432, 194.5298271122444, 67.32058588677145)" />
|
|
61
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.23718895420606287, 0.9714635350864356, -0.9714635350864356, 0.23718895420606287, 197.28016789632528, 76.27076296185787)" />
|
|
62
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.047690507919674156, 0.99886216038769, -0.99886216038769, 0.047690507919674156, 200.20099909395958, 94.74945279129095)" />
|
|
63
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.04769050791967381, 0.99886216038769, -0.99886216038769, -0.04769050791967381, 200.35078400688286, 104.11335097737454)" />
|
|
64
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.14282527191820155, 0.9897479182607518, -0.9897479182607518, -0.14282527191820155, 199.62372900448398, 113.45033104769077)" />
|
|
65
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.23718895420606018, 0.9714635350864362, -0.9714635350864362, -0.23718895420606018, 198.02512382994541, 122.67809358510637)" />
|
|
66
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.42099055842640265, 0.9070650195635512, -0.9070650195635512, -0.42099055842640265, 192.26804783751422, 140.47958716348967)" />
|
|
67
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.5087427116122123, 0.8609186101957916, -0.8609186101957916, -0.5087427116122123, 188.156833952128, 148.89423112384983)" />
|
|
68
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.5923308088049012, 0.8056948634194782, -0.8056948634194782, -0.5923308088049012, 183.27080958975105, 156.88492983830102)" />
|
|
69
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.6705466226192042, 0.7418673917176698, -0.7418673917176698, -0.6705466226192042, 177.65784241721343, 164.38530043335447)" />
|
|
70
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.6705466226192044, -0.7418673917176697, 0.7418673917176697, -0.6705466226192044, 31.03118927306292, 171.04013149603554)" />
|
|
71
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.33016373405114247, -0.9439236773793771, 0.9439236773793771, -0.33016373405114247, 6.905166400618896, 131.5496851499584)" />
|
|
72
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.1428252719182001, -0.989747918260752, 0.989747918260752, 0.1428252719182001, 3.319726273040878, 85.51251109448411)" />
|
|
73
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.5923308088049001, -0.805694863419479, 0.805694863419479, 0.5923308088049001, 20.99241263117365, 42.88073337134005)" />
|
|
74
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9070650195635511, -0.4209905584264029, 0.4209905584264029, 0.9070650195635511, 56.0331430510312, 12.829953640458436)" />
|
|
75
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 100.99999999999997, 2.0000000000000013)" />
|
|
76
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9070650195635512, 0.4209905584264026, -0.4209905584264026, 0.9070650195635512, 145.9668569489688, 12.829953640458418)" />
|
|
77
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.592330808804898, 0.8056948634194805, -0.8056948634194805, 0.592330808804898, 181.00758736882634, 42.880733371340064)" />
|
|
78
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.14282527191820213, 0.9897479182607517, -0.9897479182607517, 0.14282527191820213, 198.68027372695911, 85.51251109448414)" />
|
|
79
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.3301637340511437, 0.9439236773793768, -0.9439236773793768, -0.3301637340511437, 195.0948335993811, 131.54968514995838)" />
|
|
80
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.6705466226192042, 0.7418673917176698, -0.7418673917176698, -0.6705466226192042, 170.9688107269371, 171.0401314960355)" />
|
|
81
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 47.07399200934019, 139.7436317044829)">0</text>
|
|
82
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 23.33624979755052, 110.12428912687957)">10</text>
|
|
83
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 21.079712655532376, 77.8037962445162)">20</text>
|
|
84
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 33.41486042326823, 48.20767909108645)">30</text>
|
|
85
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 57.29916599832657, 27.284191472205713)">40</text>
|
|
86
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 90.05729675292966, 19.149352264404296)">50</text>
|
|
87
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 122.81542750753282, 27.2841914722057)">60</text>
|
|
88
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 146.69973308259108, 48.207679091086405)">70</text>
|
|
89
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 159.034880850327, 77.8037962445163)">80</text>
|
|
90
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 156.77834370830888, 110.12428912687952)">90</text>
|
|
91
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 133.04060149651923, 139.7436317044829)">100</text>
|
|
92
|
+
</g>
|
|
93
|
+
<path d="M 94,6 L 100,0 L 200,6 L 100,12 z" fill="red" stroke="none" transform="matrix(-0.8660254037844387, 0.49999999999999994, -0.49999999999999994, -0.8660254037844387, 190.60254037844388, 56.19615242270664)" />
|
|
94
|
+
</g>
|
|
95
|
+
</g>
|
|
96
|
+
<g transform="matrix(1, 0, 0, 1, 170, 130)" data-model="{"id":-8,"category":"ToggleView","size":{"width":64,"height":64},"useGraph":true,"graphSetting":{"id":0,"styles":[]},"label":{"content":"","font":{"isUnderline":false,"fontSize":"16px","fontStyle":"16px Microsoft YaHei","color":"#333"}}}">
|
|
97
|
+
<path d="M 0,0 L 64,0 L 64,64 L 0,64 z" fill="transparent" stroke="none" transform="matrix(1, 0, 0, 1, 0.25, 0.25)" />
|
|
98
|
+
<path d="M 0,0 L 4,0 M 8,0 L 12,0 M 16,0 L 20,0 M 24,0 L 28,0 M 32,0 L 36,0 M 40,0 L 44,0 M 48,0 L 52,0 M 56,0 L 60,0 M 64,0 L 64,0 L 64.0000625,3.9999999995117186 M 64.000125,7.999999999023437 L 64.0001875,11.999999998535156 M 64.00025,15.999999998046874 L 64.00031249999999,19.999999997558593 M 64.00037499999999,23.99999999707031 L 64.00043749999999,27.99999999658203 M 64.00049999999999,31.99999999609375 L 64.00056249999999,35.999999995605464 M 64.00062499999999,39.99999999511718 L 64.00068749999998,43.999999994628894 M 64.00074999999998,47.99999999414061 L 64.00081249999998,51.999999993652324 M 64.00087499999998,55.99999999316404 L 64.00093749999998,59.999999992675754 M 64.00099999999998,63.99999999218747 L 64.0010000000001,63.99999999999997 L 60.00100000781261,63.99999999999997 M 56.00100000781261,63.99999999999997 L 52.00100000781261,63.99999999999997 M 48.00100000781261,63.99999999999997 L 44.00100000781261,63.99999999999997 M 40.00100000781261,63.99999999999997 L 36.00100000781261,63.99999999999997 M 32.00100000781261,63.99999999999997 L 28.001000007812607,63.99999999999997 M 24.001000007812607,63.99999999999997 L 20.001000007812607,63.99999999999997 M 16.001000007812607,63.99999999999997 L 12.001000007812607,63.99999999999997 M 8.001000007812607,63.99999999999997 L 4.001000007812607,63.99999999999997 M 0.0010000078126068956,63.99999999999997 L 0.0010000000001042508,63.99999999999997 L 0.001062499999974551,60.00000000830076 M 0.0011249999999669216,56.000000008789044 L 0.001187499999959292,52.00000000927733 M 0.0012499999999516626,48.000000009765614 L 0.0013124999999440331,44.0000000102539 M 0.0013749999999364037,40.000000010742184 L 0.0014374999999287742,36.00000001123047 M 0.0014999999999211447,32.000000011718754 L 0.0015624999999135152,28.000000012207035 M 0.0016249999999058858,24.000000012695317 L 0.0016874999998982563,20.000000013183598 M 0.0017499999998906268,16.00000001367188 L 0.0018124999998829973,12.000000014160161 M 0.0018749999998753679,8.000000014648442 L 0.0019374999998677384,4.000000015136724 M 0.001999999999860109,1.5625005289621186e-8" fill="none" stroke="transparent" stroke-width="0.5" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 0.25, 0.25)" />
|
|
99
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)" />
|
|
100
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)" />
|
|
101
|
+
</g>
|
|
102
|
+
<g transform="matrix(1, 0, 0, 1, 440, 70)" data-model="{"id":-3,"category":"Meter","min":0,"max":100}">
|
|
103
|
+
<path d="M 0,0 L 200,0 L 200,200 L 0,200 z" fill="transparent" stroke="none" transform="matrix(1, 0, 0, 1, 1, 1)" />
|
|
104
|
+
<path d="M 0,0 L 200,0 L 200,200 L 0,200 z" fill="none" stroke="transparent" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 1, 1)" />
|
|
105
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)">
|
|
106
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)" clip-path="url(#CLIP3759)">
|
|
107
|
+
<path d="M 29.289321881345245,170.71067811865476 L 29.28932188134526,170.71067811865476 A 100,100 270 1,1 170.71067811865476,170.71067811865476 M 100,200" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 1.000000000000007, 1.000000000000007)" />
|
|
108
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.6705466226192044, -0.7418673917176697, 0.7418673917176697, -0.6705466226192044, 24.342157582786577, 164.3853004333545)" />
|
|
109
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.5923308088049017, -0.8056948634194777, 0.8056948634194777, -0.5923308088049017, 18.72919041024899, 156.88492983830108)" />
|
|
110
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.5087427116122141, -0.8609186101957906, 0.8609186101957906, -0.5087427116122141, 13.843166047872018, 148.89423112384986)" />
|
|
111
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.42099055842640287, -0.9070650195635511, 0.9070650195635511, -0.42099055842640287, 9.731952162485749, 140.47958716348964)" />
|
|
112
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.23718895420606256, -0.9714635350864357, 0.9714635350864357, -0.23718895420606256, 3.9748761700545803, 122.6780935851064)" />
|
|
113
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.14282527191820135, -0.9897479182607518, 0.9897479182607518, -0.14282527191820135, 2.3762709955159975, 113.45033104769077)" />
|
|
114
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.04769050791967295, -0.9988621603876902, 0.9988621603876902, -0.04769050791967295, 1.6492159931171166, 104.11335097737462)" />
|
|
115
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.04769050791967258, -0.9988621603876902, 0.9988621603876902, 0.04769050791967258, 1.7990009060403873, 94.74945279129098)" />
|
|
116
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.23718895420606134, -0.9714635350864359, 0.9714635350864359, 0.23718895420606134, 4.719832103674684, 76.27076296185793)" />
|
|
117
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.33016373405114297, -0.943923677379377, 0.943923677379377, 0.33016373405114297, 7.470172887755587, 67.32058588677151)" />
|
|
118
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.42099055842640176, -0.9070650195635517, 0.9070650195635517, 0.42099055842640176, 11.054186646581202, 58.671530304164186)" />
|
|
119
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.508742711612213, -0.8609186101957912, 0.8609186101957912, 0.508742711612213, 15.441009855439262, 50.40182159843602)" />
|
|
120
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.6705466226192054, -0.7418673917176687, 0.7418673917176687, 0.6705466226192054, 26.44819024759241, 35.28466477531527)" />
|
|
121
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.7418673917176685, -0.6705466226192057, 0.6705466226192057, 0.7418673917176685, 32.954629983985086, 28.554222912398227)" />
|
|
122
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.8056948634194788, -0.5923308088049004, 0.5923308088049004, 0.8056948634194788, 40.05406577217627, 22.449939988678825)" />
|
|
123
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.8609186101957905, -0.5087427116122141, 0.5087427116122141, 0.8609186101957905, 47.69787432072193, 17.038853663006492)" />
|
|
124
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9439236773793771, -0.3301637340511425, 0.3301637340511425, 0.9439236773793771, 64.35593879052692, 8.507141213581987)" />
|
|
125
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9714635350864356, -0.23718895420606262, 0.23718895420606262, 0.9714635350864356, 73.21961950882222, 5.464788037294806)" />
|
|
126
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9897479182607519, -0.14282527191820055, 0.14282527191820055, 0.9897479182607519, 82.3325279647408, 3.2734336323050126)" />
|
|
127
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9988621603876902, -0.04769050791967301, 0.04769050791967301, 0.9988621603876902, 91.61225655995649, 1.9487858189636655)" />
|
|
128
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9988621603876902, 0.047690507919672456, -0.047690507919672456, 0.9988621603876902, 110.38774344004345, 1.9487858189636598)" />
|
|
129
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9897479182607519, 0.14282527191820088, -0.14282527191820088, 0.9897479182607519, 119.66747203525922, 3.2734336323050104)" />
|
|
130
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9714635350864357, 0.23718895420606223, -0.23718895420606223, 0.9714635350864357, 128.78038049117777, 5.464788037294799)" />
|
|
131
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9439236773793772, 0.3301637340511423, -0.3301637340511423, 0.9439236773793772, 137.64406120947305, 8.507141213581962)" />
|
|
132
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.8609186101957906, 0.508742711612214, -0.508742711612214, 0.8609186101957906, 154.30212567927805, 17.03885366300646)" />
|
|
133
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.8056948634194778, 0.5923308088049016, -0.5923308088049016, 0.8056948634194778, 161.94593422782373, 22.44993998867882)" />
|
|
134
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.7418673917176701, 0.6705466226192038, -0.6705466226192038, 0.7418673917176701, 169.04537001601494, 28.554222912398256)" />
|
|
135
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.6705466226192044, 0.7418673917176696, -0.7418673917176696, 0.6705466226192044, 175.55180975240762, 35.2846647753153)" />
|
|
136
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.5087427116122156, 0.8609186101957896, -0.8609186101957896, 0.5087427116122156, 186.55899014456074, 50.40182159843604)" />
|
|
137
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.42099055842640215, 0.9070650195635515, -0.9070650195635515, 0.42099055842640215, 190.94581335341874, 58.671530304164136)" />
|
|
138
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.3301637340511432, 0.9439236773793769, -0.9439236773793769, 0.3301637340511432, 194.5298271122444, 67.32058588677145)" />
|
|
139
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.23718895420606287, 0.9714635350864356, -0.9714635350864356, 0.23718895420606287, 197.28016789632528, 76.27076296185787)" />
|
|
140
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.047690507919674156, 0.99886216038769, -0.99886216038769, 0.047690507919674156, 200.20099909395958, 94.74945279129095)" />
|
|
141
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.04769050791967381, 0.99886216038769, -0.99886216038769, -0.04769050791967381, 200.35078400688286, 104.11335097737454)" />
|
|
142
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.14282527191820155, 0.9897479182607518, -0.9897479182607518, -0.14282527191820155, 199.62372900448398, 113.45033104769077)" />
|
|
143
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.23718895420606018, 0.9714635350864362, -0.9714635350864362, -0.23718895420606018, 198.02512382994541, 122.67809358510637)" />
|
|
144
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.42099055842640265, 0.9070650195635512, -0.9070650195635512, -0.42099055842640265, 192.26804783751422, 140.47958716348967)" />
|
|
145
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.5087427116122123, 0.8609186101957916, -0.8609186101957916, -0.5087427116122123, 188.156833952128, 148.89423112384983)" />
|
|
146
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.5923308088049012, 0.8056948634194782, -0.8056948634194782, -0.5923308088049012, 183.27080958975105, 156.88492983830102)" />
|
|
147
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.6705466226192042, 0.7418673917176698, -0.7418673917176698, -0.6705466226192042, 177.65784241721343, 164.38530043335447)" />
|
|
148
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.6705466226192044, -0.7418673917176697, 0.7418673917176697, -0.6705466226192044, 31.03118927306292, 171.04013149603554)" />
|
|
149
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.33016373405114247, -0.9439236773793771, 0.9439236773793771, -0.33016373405114247, 6.905166400618896, 131.5496851499584)" />
|
|
150
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.1428252719182001, -0.989747918260752, 0.989747918260752, 0.1428252719182001, 3.319726273040878, 85.51251109448411)" />
|
|
151
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.5923308088049001, -0.805694863419479, 0.805694863419479, 0.5923308088049001, 20.99241263117365, 42.88073337134005)" />
|
|
152
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9070650195635511, -0.4209905584264029, 0.4209905584264029, 0.9070650195635511, 56.0331430510312, 12.829953640458436)" />
|
|
153
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 100.99999999999997, 2.0000000000000013)" />
|
|
154
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9070650195635512, 0.4209905584264026, -0.4209905584264026, 0.9070650195635512, 145.9668569489688, 12.829953640458418)" />
|
|
155
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.592330808804898, 0.8056948634194805, -0.8056948634194805, 0.592330808804898, 181.00758736882634, 42.880733371340064)" />
|
|
156
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.14282527191820213, 0.9897479182607517, -0.9897479182607517, 0.14282527191820213, 198.68027372695911, 85.51251109448414)" />
|
|
157
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.3301637340511437, 0.9439236773793768, -0.9439236773793768, -0.3301637340511437, 195.0948335993811, 131.54968514995838)" />
|
|
158
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.6705466226192042, 0.7418673917176698, -0.7418673917176698, -0.6705466226192042, 170.9688107269371, 171.0401314960355)" />
|
|
159
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 47.07399200934019, 139.7436317044829)">0</text>
|
|
160
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 23.33624979755052, 110.12428912687957)">10</text>
|
|
161
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 21.079712655532376, 77.8037962445162)">20</text>
|
|
162
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 33.41486042326823, 48.20767909108645)">30</text>
|
|
163
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 57.29916599832657, 27.284191472205713)">40</text>
|
|
164
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 90.05729675292966, 19.149352264404296)">50</text>
|
|
165
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 122.81542750753282, 27.2841914722057)">60</text>
|
|
166
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 146.69973308259108, 48.207679091086405)">70</text>
|
|
167
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 159.034880850327, 77.8037962445163)">80</text>
|
|
168
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 156.77834370830888, 110.12428912687952)">90</text>
|
|
169
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 133.04060149651923, 139.7436317044829)">100</text>
|
|
170
|
+
</g>
|
|
171
|
+
<path d="M 94,6 L 100,0 L 200,6 L 100,12 z" fill="red" stroke="none" transform="matrix(-0.8660254037844387, 0.49999999999999994, -0.49999999999999994, -0.8660254037844387, 190.60254037844388, 56.19615242270664)" />
|
|
172
|
+
</g>
|
|
173
|
+
</g>
|
|
174
|
+
<g transform="matrix(1, 0, 0, 1, 180, 194.5)" data-model="{"id":-5,"category":"Text"}">
|
|
175
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)">
|
|
176
|
+
<text x="20" y="15.241992187500001" style="font: 16px Microsoft YaHei" text-anchor="middle" fill="#333" stroke="none" transform="matrix(1, 0, 0, 1, 10.25, 10.25)">文本</text>
|
|
177
|
+
</g>
|
|
178
|
+
</g>
|
|
179
|
+
<g transform="matrix(1, 0, 0, 1, 180, 280)" data-model="{"id":-6,"category":"SwitchIndicatorLight","size":{"width":64,"height":32},"useSwitch":false,"useIndicatorLight":false,"states":[{"id":0,"text":{"content":"","font":{"isUnderline":false,"fontSize":"16","color":"#333","isBold":false,"isItalic":false,"fontFamily":"Microsoft YaHei"}}},{"id":1,"text":{"content":"","font":{"isUnderline":false,"fontSize":"16","color":"#333","isBold":false,"isItalic":false,"fontFamily":"Microsoft YaHei"}}}],"useGraph":true,"graphSetting":{"id":0,"styles":[]}}">
|
|
180
|
+
<path d="M 0,0 L 64,0 L 64,32 L 0,32 z" fill="transparent" stroke="none" transform="matrix(1, 0, 0, 1, 0.25, 0.25)" />
|
|
181
|
+
<path d="M 0,0 L 4,0 M 8,0 L 12,0 M 16,0 L 20,0 M 24,0 L 28,0 M 32,0 L 36,0 M 40,0 L 44,0 M 48,0 L 52,0 M 56,0 L 60,0 M 64,0 L 64,0 L 64.00012499999994,3.999999998046875 M 64.00024999999988,7.99999999609375 L 64.00037499999982,11.999999994140625 M 64.00049999999976,15.9999999921875 L 64.0006249999997,19.999999990234375 M 64.00074999999964,23.99999998828125 L 64.00087499999958,27.999999986328124 M 64.00099999999952,31.999999984375 L 64.001,31.999999999999996 L 60.001000015625,31.999999999999996 M 56.001000015625,31.999999999999996 L 52.001000015625,31.999999999999996 M 48.001000015625,31.999999999999996 L 44.001000015625,31.999999999999996 M 40.001000015625,31.999999999999996 L 36.001000015625,31.999999999999996 M 32.001000015625,31.999999999999996 L 28.001000015625003,31.999999999999996 M 24.001000015625003,31.999999999999996 L 20.001000015625003,31.999999999999996 M 16.001000015625003,31.999999999999996 L 12.001000015625003,31.999999999999996 M 8.001000015625003,31.999999999999996 L 4.001000015625003,31.999999999999996 M 0.001000015625002959,31.999999999999996 L 0.0010000000000047748,31.999999999999996 L 0.0011249999994554585,28.00000001757812 M 0.0012499999993944235,24.000000019531246 L 0.0013749999993333882,20.00000002148437 M 0.001499999999272353,16.000000023437497 L 0.0016249999992113177,12.000000025390623 M 0.0017499999991502824,8.000000027343749 L 0.0018749999990892471,4.000000029296874 M 0.001999999999028212,3.1249999477012125e-8" fill="none" stroke="transparent" stroke-width="0.5" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 0.25, 0.25)" />
|
|
182
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)" />
|
|
183
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)" />
|
|
184
|
+
</g>
|
|
185
|
+
<g transform="matrix(1, 0, 0, 1, 480, 272)" data-model="{"id":-7,"category":"Meter","min":0,"max":100}">
|
|
186
|
+
<path d="M 0,0 L 200,0 L 200,200 L 0,200 z" fill="transparent" stroke="none" transform="matrix(1, 0, 0, 1, 1, 1)" />
|
|
187
|
+
<path d="M 0,0 L 200,0 L 200,200 L 0,200 z" fill="none" stroke="transparent" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 1, 1)" />
|
|
188
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)">
|
|
189
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)" clip-path="url(#CLIP3760)">
|
|
190
|
+
<path d="M 29.289321881345245,170.71067811865476 L 29.28932188134526,170.71067811865476 A 100,100 270 1,1 170.71067811865476,170.71067811865476 M 100,200" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 1.000000000000007, 1.000000000000007)" />
|
|
191
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.6705466226192044, -0.7418673917176697, 0.7418673917176697, -0.6705466226192044, 24.342157582786577, 164.3853004333545)" />
|
|
192
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.5923308088049017, -0.8056948634194777, 0.8056948634194777, -0.5923308088049017, 18.72919041024899, 156.88492983830108)" />
|
|
193
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.5087427116122141, -0.8609186101957906, 0.8609186101957906, -0.5087427116122141, 13.843166047872018, 148.89423112384986)" />
|
|
194
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.42099055842640287, -0.9070650195635511, 0.9070650195635511, -0.42099055842640287, 9.731952162485749, 140.47958716348964)" />
|
|
195
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.23718895420606256, -0.9714635350864357, 0.9714635350864357, -0.23718895420606256, 3.9748761700545803, 122.6780935851064)" />
|
|
196
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.14282527191820135, -0.9897479182607518, 0.9897479182607518, -0.14282527191820135, 2.3762709955159975, 113.45033104769077)" />
|
|
197
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.04769050791967295, -0.9988621603876902, 0.9988621603876902, -0.04769050791967295, 1.6492159931171166, 104.11335097737462)" />
|
|
198
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.04769050791967258, -0.9988621603876902, 0.9988621603876902, 0.04769050791967258, 1.7990009060403873, 94.74945279129098)" />
|
|
199
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.23718895420606134, -0.9714635350864359, 0.9714635350864359, 0.23718895420606134, 4.719832103674684, 76.27076296185793)" />
|
|
200
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.33016373405114297, -0.943923677379377, 0.943923677379377, 0.33016373405114297, 7.470172887755587, 67.32058588677151)" />
|
|
201
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.42099055842640176, -0.9070650195635517, 0.9070650195635517, 0.42099055842640176, 11.054186646581202, 58.671530304164186)" />
|
|
202
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.508742711612213, -0.8609186101957912, 0.8609186101957912, 0.508742711612213, 15.441009855439262, 50.40182159843602)" />
|
|
203
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.6705466226192054, -0.7418673917176687, 0.7418673917176687, 0.6705466226192054, 26.44819024759241, 35.28466477531527)" />
|
|
204
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.7418673917176685, -0.6705466226192057, 0.6705466226192057, 0.7418673917176685, 32.954629983985086, 28.554222912398227)" />
|
|
205
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.8056948634194788, -0.5923308088049004, 0.5923308088049004, 0.8056948634194788, 40.05406577217627, 22.449939988678825)" />
|
|
206
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.8609186101957905, -0.5087427116122141, 0.5087427116122141, 0.8609186101957905, 47.69787432072193, 17.038853663006492)" />
|
|
207
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9439236773793771, -0.3301637340511425, 0.3301637340511425, 0.9439236773793771, 64.35593879052692, 8.507141213581987)" />
|
|
208
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9714635350864356, -0.23718895420606262, 0.23718895420606262, 0.9714635350864356, 73.21961950882222, 5.464788037294806)" />
|
|
209
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9897479182607519, -0.14282527191820055, 0.14282527191820055, 0.9897479182607519, 82.3325279647408, 3.2734336323050126)" />
|
|
210
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9988621603876902, -0.04769050791967301, 0.04769050791967301, 0.9988621603876902, 91.61225655995649, 1.9487858189636655)" />
|
|
211
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9988621603876902, 0.047690507919672456, -0.047690507919672456, 0.9988621603876902, 110.38774344004345, 1.9487858189636598)" />
|
|
212
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9897479182607519, 0.14282527191820088, -0.14282527191820088, 0.9897479182607519, 119.66747203525922, 3.2734336323050104)" />
|
|
213
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9714635350864357, 0.23718895420606223, -0.23718895420606223, 0.9714635350864357, 128.78038049117777, 5.464788037294799)" />
|
|
214
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9439236773793772, 0.3301637340511423, -0.3301637340511423, 0.9439236773793772, 137.64406120947305, 8.507141213581962)" />
|
|
215
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.8609186101957906, 0.508742711612214, -0.508742711612214, 0.8609186101957906, 154.30212567927805, 17.03885366300646)" />
|
|
216
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.8056948634194778, 0.5923308088049016, -0.5923308088049016, 0.8056948634194778, 161.94593422782373, 22.44993998867882)" />
|
|
217
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.7418673917176701, 0.6705466226192038, -0.6705466226192038, 0.7418673917176701, 169.04537001601494, 28.554222912398256)" />
|
|
218
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.6705466226192044, 0.7418673917176696, -0.7418673917176696, 0.6705466226192044, 175.55180975240762, 35.2846647753153)" />
|
|
219
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.5087427116122156, 0.8609186101957896, -0.8609186101957896, 0.5087427116122156, 186.55899014456074, 50.40182159843604)" />
|
|
220
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.42099055842640215, 0.9070650195635515, -0.9070650195635515, 0.42099055842640215, 190.94581335341874, 58.671530304164136)" />
|
|
221
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.3301637340511432, 0.9439236773793769, -0.9439236773793769, 0.3301637340511432, 194.5298271122444, 67.32058588677145)" />
|
|
222
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.23718895420606287, 0.9714635350864356, -0.9714635350864356, 0.23718895420606287, 197.28016789632528, 76.27076296185787)" />
|
|
223
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.047690507919674156, 0.99886216038769, -0.99886216038769, 0.047690507919674156, 200.20099909395958, 94.74945279129095)" />
|
|
224
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.04769050791967381, 0.99886216038769, -0.99886216038769, -0.04769050791967381, 200.35078400688286, 104.11335097737454)" />
|
|
225
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.14282527191820155, 0.9897479182607518, -0.9897479182607518, -0.14282527191820155, 199.62372900448398, 113.45033104769077)" />
|
|
226
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.23718895420606018, 0.9714635350864362, -0.9714635350864362, -0.23718895420606018, 198.02512382994541, 122.67809358510637)" />
|
|
227
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.42099055842640265, 0.9070650195635512, -0.9070650195635512, -0.42099055842640265, 192.26804783751422, 140.47958716348967)" />
|
|
228
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.5087427116122123, 0.8609186101957916, -0.8609186101957916, -0.5087427116122123, 188.156833952128, 148.89423112384983)" />
|
|
229
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.5923308088049012, 0.8056948634194782, -0.8056948634194782, -0.5923308088049012, 183.27080958975105, 156.88492983830102)" />
|
|
230
|
+
<path d="M 0,0 L 0,8" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.6705466226192042, 0.7418673917176698, -0.7418673917176698, -0.6705466226192042, 177.65784241721343, 164.38530043335447)" />
|
|
231
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.6705466226192044, -0.7418673917176697, 0.7418673917176697, -0.6705466226192044, 31.03118927306292, 171.04013149603554)" />
|
|
232
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.33016373405114247, -0.9439236773793771, 0.9439236773793771, -0.33016373405114247, 6.905166400618896, 131.5496851499584)" />
|
|
233
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.1428252719182001, -0.989747918260752, 0.989747918260752, 0.1428252719182001, 3.319726273040878, 85.51251109448411)" />
|
|
234
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.5923308088049001, -0.805694863419479, 0.805694863419479, 0.5923308088049001, 20.99241263117365, 42.88073337134005)" />
|
|
235
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9070650195635511, -0.4209905584264029, 0.4209905584264029, 0.9070650195635511, 56.0331430510312, 12.829953640458436)" />
|
|
236
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 100.99999999999997, 2.0000000000000013)" />
|
|
237
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.9070650195635512, 0.4209905584264026, -0.4209905584264026, 0.9070650195635512, 145.9668569489688, 12.829953640458418)" />
|
|
238
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.592330808804898, 0.8056948634194805, -0.8056948634194805, 0.592330808804898, 181.00758736882634, 42.880733371340064)" />
|
|
239
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0.14282527191820213, 0.9897479182607517, -0.9897479182607517, 0.14282527191820213, 198.68027372695911, 85.51251109448414)" />
|
|
240
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.3301637340511437, 0.9439236773793768, -0.9439236773793768, -0.3301637340511437, 195.0948335993811, 131.54968514995838)" />
|
|
241
|
+
<path d="M 0,0 L 0,16" fill="none" stroke="black" stroke-width="2" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(-0.6705466226192042, 0.7418673917176698, -0.7418673917176698, -0.6705466226192042, 170.9688107269371, 171.0401314960355)" />
|
|
242
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 47.07399200934019, 139.7436317044829)">0</text>
|
|
243
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 23.33624979755052, 110.12428912687957)">10</text>
|
|
244
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 21.079712655532376, 77.8037962445162)">20</text>
|
|
245
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 33.41486042326823, 48.20767909108645)">30</text>
|
|
246
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 57.29916599832657, 27.284191472205713)">40</text>
|
|
247
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 90.05729675292966, 19.149352264404296)">50</text>
|
|
248
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 122.81542750753282, 27.2841914722057)">60</text>
|
|
249
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 146.69973308259108, 48.207679091086405)">70</text>
|
|
250
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 159.034880850327, 77.8037962445163)">80</text>
|
|
251
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 156.77834370830888, 110.12428912687952)">90</text>
|
|
252
|
+
<text x="0" y="17.775971603393558" style="font: 14pt sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 133.04060149651923, 139.7436317044829)">100</text>
|
|
253
|
+
</g>
|
|
254
|
+
<path d="M 94,6 L 100,0 L 200,6 L 100,12 z" fill="red" stroke="none" transform="matrix(-0.8660254037844387, 0.49999999999999994, -0.49999999999999994, -0.8660254037844387, 190.60254037844388, 56.19615242270664)" />
|
|
255
|
+
</g>
|
|
256
|
+
</g>
|
|
257
|
+
<g transform="matrix(1, 0, 0, 1, 160, 151.088671875)" data-model="{"id":-2,"category":"NumericalDisplay","font":"16px Microsoft YaHei","fontSize":"16px","stroke":"#333","textAlign":"center"}">
|
|
258
|
+
<g transform="matrix(1, 0, 0, 1, 0.25, 0.25)">
|
|
259
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)" />
|
|
260
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)" />
|
|
261
|
+
</g>
|
|
262
|
+
</g>
|
|
263
|
+
<g transform="matrix(1, 0, 0, 1, 129.75, 40)" data-model="{"id":-1,"category":"Image","size":{"width":120,"height":90},"imageId":"defaultImage"}">
|
|
264
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)">
|
|
265
|
+
<image x="0" y="0" width="120" height="90" preserveAspectRatio="xMidYMid slice" transform="matrix(1, 0, 0, 1, 0, 0)" crossorigin="anonymous" />
|
|
266
|
+
</g>
|
|
267
|
+
</g>
|
|
268
|
+
<g transform="matrix(1, 0, 0, 1, 12.564697265625, 130.5)" data-model="{"id":-9,"category":"BarGraph","variableName":"PT100温度","direction":0,"version":1,"min":0,"max":100,"showScale":true,"masterDivisionNumber":10,"subDivisionNumber":2,"useAlarmLimit":true,"upperLimit":90,"lowerLimit":10}">
|
|
269
|
+
<rect xmlns="http://www.w3.org/1999/xhtml" fill="transparent" transform="matrix(1, 0, 0, 1, 42.435302734375, 128.2560791015625)"></rect>
|
|
270
|
+
<path d="M 0,0 L 50,0 L 50,200 L 0,200 z" fill="transparent" stroke="none" transform="matrix(1, 0, 0, 1, 42.435302734375, 7.756079101562506)" />
|
|
271
|
+
<path d="M 0,0 L 50,0 L 50,200 L 0,200 z" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 42.435302734375, 7.756079101562506)" />
|
|
272
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)" clip-path="url(#CLIP3761)">
|
|
273
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 7.435302734375, 200)">0</text>
|
|
274
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 3.811767578125, 180)">10</text>
|
|
275
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 3.811767578125, 160)">20</text>
|
|
276
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 3.811767578125, 140)">30</text>
|
|
277
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 3.811767578125, 120)">40</text>
|
|
278
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 3.811767578125, 100)">50</text>
|
|
279
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 3.811767578125, 80)">60</text>
|
|
280
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 3.811767578125, 60)">70</text>
|
|
281
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 3.811767578125, 40)">80</text>
|
|
282
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 3.811767578125, 20)">90</text>
|
|
283
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 0, 0)">100</text>
|
|
284
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 36.435302734375, 198.2560791015625)" />
|
|
285
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 36.435302734375, 178.2560791015625)" />
|
|
286
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 36.435302734375, 158.2560791015625)" />
|
|
287
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 36.435302734375, 138.2560791015625)" />
|
|
288
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 36.435302734375, 118.2560791015625)" />
|
|
289
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 36.435302734375, 98.25607910156249)" />
|
|
290
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 36.435302734375, 78.2560791015625)" />
|
|
291
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 36.435302734375, 58.2560791015625)" />
|
|
292
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 36.435302734375, 38.2560791015625)" />
|
|
293
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 36.435302734375, 18.2560791015625)" />
|
|
294
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 31.435302734375, 208.2560791015625)" />
|
|
295
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 31.435302734375, 188.2560791015625)" />
|
|
296
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 31.435302734375, 168.2560791015625)" />
|
|
297
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 31.435302734375, 148.2560791015625)" />
|
|
298
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 31.435302734375, 128.2560791015625)" />
|
|
299
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 31.435302734375, 108.2560791015625)" />
|
|
300
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 31.435302734375, 88.2560791015625)" />
|
|
301
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 31.435302734375, 68.2560791015625)" />
|
|
302
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 31.435302734375, 48.2560791015625)" />
|
|
303
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 31.435302734375, 28.2560791015625)" />
|
|
304
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 31.435302734375, 8.2560791015625)" />
|
|
305
|
+
</g>
|
|
306
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 54.029052734375, 99.5)" id="text" />
|
|
307
|
+
</g>
|
|
308
|
+
<g transform="matrix(1, 0, 0, 1, 126.564697265625, 242.2439208984375)" data-model="{"id":-10,"category":"BarGraph","variableName":"PT100温度","direction":1,"version":1,"min":0,"max":100,"showScale":true,"masterDivisionNumber":10,"subDivisionNumber":2,"useAlarmLimit":true,"upperLimit":90,"lowerLimit":10}">
|
|
309
|
+
<rect xmlns="http://www.w3.org/1999/xhtml" fill="transparent" transform="matrix(1, 0, 0, 1, 42.435302734375, 7.256079101562506)"></rect>
|
|
310
|
+
<path d="M 0,0 L 50,0 L 50,200 L 0,200 z" fill="transparent" stroke="none" transform="matrix(1, 0, 0, 1, 42.435302734375, 7.756079101562506)" />
|
|
311
|
+
<path d="M 0,0 L 50,0 L 50,200 L 0,200 z" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 42.435302734375, 7.756079101562506)" />
|
|
312
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)" clip-path="url(#CLIP3762)">
|
|
313
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 7.435302734375, 0)">0</text>
|
|
314
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 3.811767578125, 20)">10</text>
|
|
315
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 3.811767578125, 40)">20</text>
|
|
316
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 3.811767578125, 60)">30</text>
|
|
317
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 3.811767578125, 80)">40</text>
|
|
318
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 3.811767578125, 100)">50</text>
|
|
319
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 3.811767578125, 120)">60</text>
|
|
320
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 3.811767578125, 140)">70</text>
|
|
321
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 3.811767578125, 160)">80</text>
|
|
322
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 3.811767578125, 180)">90</text>
|
|
323
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 0, 200)">100</text>
|
|
324
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.435302734375, 18.2560791015625)" />
|
|
325
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.435302734375, 38.2560791015625)" />
|
|
326
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.435302734375, 58.2560791015625)" />
|
|
327
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.435302734375, 78.2560791015625)" />
|
|
328
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.435302734375, 98.2560791015625)" />
|
|
329
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.435302734375, 118.25607910156252)" />
|
|
330
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.435302734375, 138.2560791015625)" />
|
|
331
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.435302734375, 158.2560791015625)" />
|
|
332
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.435302734375, 178.2560791015625)" />
|
|
333
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.435302734375, 198.2560791015625)" />
|
|
334
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.435302734375, 8.2560791015625)" />
|
|
335
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.435302734375, 28.2560791015625)" />
|
|
336
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.435302734375, 48.2560791015625)" />
|
|
337
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.435302734375, 68.2560791015625)" />
|
|
338
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.435302734375, 88.2560791015625)" />
|
|
339
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.435302734375, 108.2560791015625)" />
|
|
340
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.435302734375, 128.2560791015625)" />
|
|
341
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.435302734375, 148.2560791015625)" />
|
|
342
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.435302734375, 168.2560791015625)" />
|
|
343
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.435302734375, 188.2560791015625)" />
|
|
344
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 41.435302734375, 208.2560791015625)" />
|
|
345
|
+
</g>
|
|
346
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(1, 0, 0, 1, 54.029052734375, 99.5)" id="text" />
|
|
347
|
+
</g>
|
|
348
|
+
<g transform="matrix(0, 1, -1, 0, 464.4029541015625, 6.243920898437494)" data-model="{"id":-11,"category":"BarGraph","variableName":"PT100温度","direction":2,"version":1,"min":0,"max":100,"showScale":true,"masterDivisionNumber":10,"subDivisionNumber":2,"useAlarmLimit":true,"upperLimit":90,"lowerLimit":10}">
|
|
349
|
+
<rect xmlns="http://www.w3.org/1999/xhtml" fill="transparent" transform="matrix(1, 0, 0, 1, 28.7560791015625, 127.435302734375)"></rect>
|
|
350
|
+
<path d="M 0,0 L 50,0 L 50,200 L 0,200 z" fill="transparent" stroke="none" transform="matrix(1, 0, 0, 1, 28.7560791015625, 6.935302734375)" />
|
|
351
|
+
<path d="M 0,0 L 50,0 L 50,200 L 0,200 z" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 28.7560791015625, 6.935302734375)" />
|
|
352
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)" clip-path="url(#CLIP3763)">
|
|
353
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(0, -1, 1, 0, 0, 215.435302734375)">0</text>
|
|
354
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(0, -1, 1, 0, 0, 199.058837890625)">10</text>
|
|
355
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(0, -1, 1, 0, 0, 179.058837890625)">20</text>
|
|
356
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(0, -1, 1, 0, 0, 159.058837890625)">30</text>
|
|
357
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(0, -1, 1, 0, 0, 139.058837890625)">40</text>
|
|
358
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(0, -1, 1, 0, 0, 119.058837890625)">50</text>
|
|
359
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(0, -1, 1, 0, 0, 99.058837890625)">60</text>
|
|
360
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(0, -1, 1, 0, 0, 79.058837890625)">70</text>
|
|
361
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(0, -1, 1, 0, 0, 59.058837890625)">80</text>
|
|
362
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(0, -1, 1, 0, 0, 39.058837890625)">90</text>
|
|
363
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(0, -1, 1, 0, 0, 22.87060546875)">100</text>
|
|
364
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 22.7560791015625, 197.435302734375)" />
|
|
365
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 22.7560791015625, 177.435302734375)" />
|
|
366
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 22.7560791015625, 157.435302734375)" />
|
|
367
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 22.7560791015625, 137.435302734375)" />
|
|
368
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 22.7560791015625, 117.435302734375)" />
|
|
369
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 22.7560791015625, 97.43530273437499)" />
|
|
370
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 22.7560791015625, 77.435302734375)" />
|
|
371
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 22.7560791015625, 57.435302734375)" />
|
|
372
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 22.7560791015625, 37.435302734375)" />
|
|
373
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 22.7560791015625, 17.435302734375)" />
|
|
374
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 17.7560791015625, 207.435302734375)" />
|
|
375
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 17.7560791015625, 187.435302734375)" />
|
|
376
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 17.7560791015625, 167.435302734375)" />
|
|
377
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 17.7560791015625, 147.435302734375)" />
|
|
378
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 17.7560791015625, 127.435302734375)" />
|
|
379
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 17.7560791015625, 107.435302734375)" />
|
|
380
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 17.7560791015625, 87.435302734375)" />
|
|
381
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 17.7560791015625, 67.435302734375)" />
|
|
382
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 17.7560791015625, 47.435302734375)" />
|
|
383
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 17.7560791015625, 27.435302734375)" />
|
|
384
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, -1, 1, 0, 17.7560791015625, 7.435302734375)" />
|
|
385
|
+
</g>
|
|
386
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(0, -1, 1, 0, 45.5, 120.341552734375)" id="text" />
|
|
387
|
+
</g>
|
|
388
|
+
<g transform="matrix(0, 1, -1, 0, 464.9676513671875, 394.7439208984375)" data-model="{"id":-12,"category":"BarGraph","variableName":"PT100温度","direction":3,"version":1,"min":0,"max":100,"showScale":true,"masterDivisionNumber":10,"subDivisionNumber":2,"useAlarmLimit":true,"upperLimit":90,"lowerLimit":10}">
|
|
389
|
+
<rect xmlns="http://www.w3.org/1999/xhtml" fill="transparent" transform="matrix(1, 0, 0, 1, 28.7560791015625, 7)"></rect>
|
|
390
|
+
<path d="M 0,0 L 50,0 L 50,200 L 0,200 z" fill="transparent" stroke="none" transform="matrix(1, 0, 0, 1, 28.7560791015625, 7.5)" />
|
|
391
|
+
<path d="M 0,0 L 50,0 L 50,200 L 0,200 z" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(1, 0, 0, 1, 28.7560791015625, 7.5)" />
|
|
392
|
+
<g transform="matrix(1, 0, 0, 1, 0, 0)" clip-path="url(#CLIP3764)">
|
|
393
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(0, -1, 1, 0, 0, 8)">0</text>
|
|
394
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(0, -1, 1, 0, 0, 31.62353515625)">10</text>
|
|
395
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(0, -1, 1, 0, 0, 51.62353515625)">20</text>
|
|
396
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(0, -1, 1, 0, 0, 71.62353515625)">30</text>
|
|
397
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(0, -1, 1, 0, 0, 91.62353515625)">40</text>
|
|
398
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(0, -1, 1, 0, 0, 111.62353515625)">50</text>
|
|
399
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(0, -1, 1, 0, 0, 131.62353515625)">60</text>
|
|
400
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(0, -1, 1, 0, 0, 151.62353515625)">70</text>
|
|
401
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(0, -1, 1, 0, 0, 171.62353515625)">80</text>
|
|
402
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(0, -1, 1, 0, 0, 191.62353515625)">90</text>
|
|
403
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(0, -1, 1, 0, 0, 215.435302734375)">100</text>
|
|
404
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 27.7560791015625, 18)" />
|
|
405
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 27.7560791015625, 38)" />
|
|
406
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 27.7560791015625, 58)" />
|
|
407
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 27.7560791015625, 78)" />
|
|
408
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 27.7560791015625, 98)" />
|
|
409
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 27.7560791015625, 118.00000000000001)" />
|
|
410
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 27.7560791015625, 138)" />
|
|
411
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 27.7560791015625, 158)" />
|
|
412
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 27.7560791015625, 178)" />
|
|
413
|
+
<path d="M 0,0 L 0,5" fill="none" stroke="gray" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 27.7560791015625, 198)" />
|
|
414
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 27.7560791015625, 8)" />
|
|
415
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 27.7560791015625, 28)" />
|
|
416
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 27.7560791015625, 48)" />
|
|
417
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 27.7560791015625, 68)" />
|
|
418
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 27.7560791015625, 88)" />
|
|
419
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 27.7560791015625, 108)" />
|
|
420
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 27.7560791015625, 128)" />
|
|
421
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 27.7560791015625, 148)" />
|
|
422
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 27.7560791015625, 168)" />
|
|
423
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 27.7560791015625, 188)" />
|
|
424
|
+
<path d="M 0,0 L 0,10" fill="none" stroke="black" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" transform="matrix(0, 1, -1, 0, 27.7560791015625, 208)" />
|
|
425
|
+
</g>
|
|
426
|
+
<text x="0" y="12.384118652343751" style="font: 13px sans-serif" text-anchor="start" fill="black" stroke="none" transform="matrix(0, -1, 1, 0, 45.5, 120.90625)" id="text" />
|
|
427
|
+
</g>
|
|
428
|
+
</g>
|
|
429
|
+
</g>
|
|
430
|
+
<clipPath id="mainClip3756">
|
|
431
|
+
<rect x="0" y="0" width="802" height="482" />
|
|
432
|
+
</clipPath>
|
|
433
|
+
<clipPath id="CLIP3758">
|
|
434
|
+
<path d="M -1,-1 L 202,-1 L 202,202 L -1,202 z" transform="matrix(1, 0, 0, 1, 0, 0)" />
|
|
435
|
+
</clipPath>
|
|
436
|
+
<clipPath id="CLIP3759">
|
|
437
|
+
<path d="M -1,-1 L 202,-1 L 202,202 L -1,202 z" transform="matrix(1, 0, 0, 1, 0, 0)" />
|
|
438
|
+
</clipPath>
|
|
439
|
+
<clipPath id="CLIP3760">
|
|
440
|
+
<path d="M -1,-1 L 202,-1 L 202,202 L -1,202 z" transform="matrix(1, 0, 0, 1, 0, 0)" />
|
|
441
|
+
</clipPath>
|
|
442
|
+
<clipPath id="CLIP3761">
|
|
443
|
+
<path d="M -1,-1 L 41.935302734375,-1 L 41.935302734375,216.512158203125 L -1,216.512158203125 z" transform="matrix(1, 0, 0, 1, 0, 0)" />
|
|
444
|
+
</clipPath>
|
|
445
|
+
<clipPath id="CLIP3762">
|
|
446
|
+
<path d="M -1,-1 L 41.935302734375,-1 L 41.935302734375,216.512158203125 L -1,216.512158203125 z" transform="matrix(1, 0, 0, 1, 0, 0)" />
|
|
447
|
+
</clipPath>
|
|
448
|
+
<clipPath id="CLIP3763">
|
|
449
|
+
<path d="M -1,-1 L 28.2560791015625,-1 L 28.2560791015625,215.435302734375 L -1,215.435302734375 z" transform="matrix(1, 0, 0, 1, 0, 0)" />
|
|
450
|
+
</clipPath>
|
|
451
|
+
<clipPath id="CLIP3764">
|
|
452
|
+
<path d="M -1,-1 L 28.2560791015625,-1 L 28.2560791015625,215.435302734375 L -1,215.435302734375 z" transform="matrix(1, 0, 0, 1, 0, 0)" />
|
|
453
|
+
</clipPath>
|
|
454
|
+
</svg>`;
|
|
455
|
+
//#endregion
|
|
456
|
+
|
|
457
|
+
getMainViewConfig(): Observable<ViewModel> {
|
|
458
|
+
return of<ViewModel>(new ViewModel(this.svg));
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
getViewConfig(viewId: number): Observable<ViewModel> {
|
|
462
|
+
return of<ViewModel>(new ViewModel(this.svg));
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
getViewConfigByConfigureViewId(viewId: number): Observable<ViewModel> {
|
|
466
|
+
return of<ViewModel>(new ViewModel(this.svg));
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
getViewConfigByConfigureViewCode(configureViewCode: string): Observable<ViewModel> {
|
|
470
|
+
return of<ViewModel>(new ViewModel(this.svg));
|
|
471
|
+
}
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
export class BarImageStore implements ImageStore {
|
|
476
|
+
getImageUrl(imageId: string): string {
|
|
477
|
+
return 'assets/e8nZC.gif';
|
|
478
|
+
}
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
export class BarConfigStore implements ConfigStore {
|
|
482
|
+
imageStore: ImageStore = new BarImageStore();
|
|
483
|
+
viewStore: ViewStore = new BarViewStore();
|
|
484
|
+
graphStore: GraphStore = new BarGraphStore();
|
|
485
|
+
historyDataStore: HistoryDataStore = new DefaultHistoryDataStore();
|
|
486
|
+
variableStore: VariableStore = new DefaultVariableStore;
|
|
487
|
+
}
|