@univerjs-pro/engine-chart 1.0.0-alpha.8 → 1.0.0-beta.1
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/README.md +25 -3
- package/lib/cjs/facade.js +1 -1
- package/lib/cjs/index.js +1 -1
- package/lib/cjs/locale/ar-SA.js +1 -0
- package/lib/cjs/locale/ca-ES.js +1 -0
- package/lib/cjs/locale/de-DE.js +1 -0
- package/lib/cjs/locale/en-US.js +1 -0
- package/lib/cjs/locale/es-ES.js +1 -0
- package/lib/cjs/locale/fa-IR.js +1 -0
- package/lib/cjs/locale/fr-FR.js +1 -0
- package/lib/cjs/locale/id-ID.js +1 -0
- package/lib/cjs/locale/it-IT.js +1 -0
- package/lib/cjs/locale/ja-JP.js +1 -0
- package/lib/cjs/locale/ko-KR.js +1 -0
- package/lib/cjs/locale/pl-PL.js +1 -0
- package/lib/cjs/locale/pt-BR.js +1 -0
- package/lib/cjs/locale/ru-RU.js +1 -0
- package/lib/cjs/locale/sk-SK.js +1 -0
- package/lib/cjs/locale/vi-VN.js +1 -0
- package/lib/cjs/locale/zh-CN.js +1 -0
- package/lib/cjs/locale/zh-HK.js +1 -0
- package/lib/cjs/locale/zh-TW.js +1 -0
- package/lib/es/facade.js +1 -1
- package/lib/es/index.js +1 -1
- package/lib/es/locale/ar-SA.js +1 -0
- package/lib/es/locale/ca-ES.js +1 -0
- package/lib/es/locale/de-DE.js +1 -0
- package/lib/es/locale/en-US.js +1 -0
- package/lib/es/locale/es-ES.js +1 -0
- package/lib/es/locale/fa-IR.js +1 -0
- package/lib/es/locale/fr-FR.js +1 -0
- package/lib/es/locale/id-ID.js +1 -0
- package/lib/es/locale/it-IT.js +1 -0
- package/lib/es/locale/ja-JP.js +1 -0
- package/lib/es/locale/ko-KR.js +1 -0
- package/lib/es/locale/pl-PL.js +1 -0
- package/lib/es/locale/pt-BR.js +1 -0
- package/lib/es/locale/ru-RU.js +1 -0
- package/lib/es/locale/sk-SK.js +1 -0
- package/lib/es/locale/vi-VN.js +1 -0
- package/lib/es/locale/zh-CN.js +1 -0
- package/lib/es/locale/zh-HK.js +1 -0
- package/lib/es/locale/zh-TW.js +1 -0
- package/lib/facade.js +1 -1
- package/lib/index.js +1 -1
- package/lib/locale/ar-SA.js +1 -0
- package/lib/locale/ca-ES.js +1 -0
- package/lib/locale/de-DE.js +1 -0
- package/lib/locale/en-US.js +1 -0
- package/lib/locale/es-ES.js +1 -0
- package/lib/locale/fa-IR.js +1 -0
- package/lib/locale/fr-FR.js +1 -0
- package/lib/locale/id-ID.js +1 -0
- package/lib/locale/it-IT.js +1 -0
- package/lib/locale/ja-JP.js +1 -0
- package/lib/locale/ko-KR.js +1 -0
- package/lib/locale/pl-PL.js +1 -0
- package/lib/locale/pt-BR.js +1 -0
- package/lib/locale/ru-RU.js +1 -0
- package/lib/locale/sk-SK.js +1 -0
- package/lib/locale/vi-VN.js +1 -0
- package/lib/locale/zh-CN.js +1 -0
- package/lib/locale/zh-HK.js +1 -0
- package/lib/locale/zh-TW.js +1 -0
- package/lib/types/chart-builder/chart-builder-adapter.d.ts +1 -3
- package/lib/types/chart-builder/chart-builder.d.ts +4 -6
- package/lib/types/chart-builder/chart-live-adapter.d.ts +15 -0
- package/lib/types/chart-builder/chart-starter-data.d.ts +3 -2
- package/lib/types/chart-builder/chart-types.d.ts +129 -13
- package/lib/types/chart-builder/configuration/assertions.d.ts +2 -0
- package/lib/types/chart-builder/configuration/cartesian-series.d.ts +3 -1
- package/lib/types/chart-builder/configuration/chart-config-group.d.ts +38 -0
- package/lib/types/chart-builder/configuration/chart-config-operation.d.ts +1 -33
- package/lib/types/chart-builder/configuration/chord.d.ts +12 -0
- package/lib/types/chart-builder/configuration/gauge.d.ts +31 -0
- package/lib/types/chart-builder/configuration/pie.d.ts +5 -6
- package/lib/types/chart-builder/configuration/sunburst.d.ts +7 -0
- package/lib/types/chart-builder/configuration/treemap.d.ts +2 -2
- package/lib/types/chart-builder/configuration/waterfall.d.ts +3 -1
- package/lib/types/chart-builder/conversion/chart-config-converter.d.ts +25 -10
- package/lib/types/chart-builder/conversion/chart-context-patch.d.ts +1 -1
- package/lib/types/chart-builder/conversion/chart-create-config.d.ts +6 -0
- package/lib/types/chart-builder/conversion/chart-model-fields.d.ts +25 -7
- package/lib/types/chart-builder/conversion/chart-type-converter.d.ts +3 -1
- package/lib/types/chart-builder/conversion/describe-chart-model.d.ts +1419 -7
- package/lib/types/chart-builder/conversion/resolve-chart-model-data.d.ts +2 -2
- package/lib/types/chart-builder/detached-chart-builder-adapter.d.ts +4 -4
- package/lib/types/chart-builder/internal/apply-pending-to-description.d.ts +2 -0
- package/lib/types/chart-builder/internal/chart-host-config-adapter.d.ts +3 -0
- package/lib/types/chart-builder/internal/chart-patch-replace-policy.d.ts +6 -0
- package/lib/types/chart-builder/internal/chart-pending-patch.d.ts +11 -0
- package/lib/types/chart-builder/internal/patch-interpreter.d.ts +17 -0
- package/lib/types/chart-data-aggregation.d.ts +10 -0
- package/lib/types/config/config.d.ts +7 -0
- package/lib/types/enum.d.ts +45 -2
- package/lib/types/facade/builders/f-area-chart-builder.d.ts +52 -7
- package/lib/types/facade/builders/f-boxplot-chart-builder.d.ts +88 -3
- package/lib/types/facade/builders/f-bubble-chart-builder.d.ts +59 -6
- package/lib/types/facade/builders/f-candlestick-chart-builder.d.ts +90 -31
- package/lib/types/facade/builders/f-chord-chart-builder.d.ts +202 -0
- package/lib/types/facade/builders/f-combination-chart-builder.d.ts +55 -10
- package/lib/types/facade/builders/f-funnel-chart-builder.d.ts +55 -9
- package/lib/types/facade/builders/f-gauge-chart-builder.d.ts +420 -0
- package/lib/types/facade/builders/f-heatmap-chart-builder.d.ts +83 -26
- package/lib/types/facade/builders/f-histogram-chart-builder.d.ts +142 -16
- package/lib/types/facade/builders/f-line-chart-builder.d.ts +51 -6
- package/lib/types/facade/builders/f-pareto-chart-builder.d.ts +83 -20
- package/lib/types/facade/builders/f-pie-chart-builder.d.ts +134 -107
- package/lib/types/facade/builders/f-radar-chart-builder.d.ts +64 -11
- package/lib/types/facade/builders/f-relation-chart-builder.d.ts +72 -38
- package/lib/types/facade/builders/f-scatter-chart-builder.d.ts +58 -6
- package/lib/types/facade/builders/f-sunburst-chart-builder.d.ts +138 -0
- package/lib/types/facade/builders/f-treemap-chart-builder.d.ts +116 -14
- package/lib/types/facade/builders/f-waterfall-chart-builder.d.ts +87 -53
- package/lib/types/facade/builders/f-word-cloud-chart-builder.d.ts +64 -15
- package/lib/types/facade/chart-builder-registry.d.ts +4 -4
- package/lib/types/facade/chart-builder-type-map.d.ts +55 -30
- package/lib/types/facade/chart-host-builder-types.d.ts +2 -21
- package/lib/types/facade/create-chart-builder.d.ts +46 -0
- package/lib/types/facade/f-axis-chart-builder.d.ts +21 -38
- package/lib/types/facade/f-cartesian-chart-builder.d.ts +34 -22
- package/lib/types/facade/f-chart-builder-base.d.ts +206 -74
- package/lib/types/facade/f-chart.d.ts +652 -0
- package/lib/types/facade/f-enum.d.ts +686 -31
- package/lib/types/facade/f-univer.d.ts +51 -0
- package/lib/types/facade/index.d.ts +27 -10
- package/lib/types/facade/internal/chart-builder-facade-context.d.ts +11 -10
- package/lib/types/index.d.ts +131 -39
- package/lib/types/locale/ar-SA.d.ts +3 -0
- package/lib/types/locale/ca-ES.d.ts +3 -0
- package/lib/types/locale/de-DE.d.ts +3 -0
- package/lib/types/locale/en-US.d.ts +46 -0
- package/lib/types/locale/es-ES.d.ts +3 -0
- package/lib/types/locale/fa-IR.d.ts +3 -0
- package/lib/types/locale/fr-FR.d.ts +3 -0
- package/lib/types/locale/id-ID.d.ts +3 -0
- package/lib/types/locale/it-IT.d.ts +3 -0
- package/lib/types/locale/ja-JP.d.ts +3 -0
- package/lib/types/locale/ko-KR.d.ts +3 -0
- package/lib/types/locale/pl-PL.d.ts +3 -0
- package/lib/types/locale/pt-BR.d.ts +3 -0
- package/lib/types/locale/ru-RU.d.ts +3 -0
- package/lib/types/locale/sk-SK.d.ts +3 -0
- package/lib/types/locale/types.d.ts +3 -0
- package/lib/types/locale/vi-VN.d.ts +3 -0
- package/lib/types/locale/zh-CN.d.ts +3 -0
- package/lib/types/locale/zh-HK.d.ts +3 -0
- package/lib/types/locale/zh-TW.d.ts +3 -0
- package/lib/types/models/{chart-semantic-axes.d.ts → chart-context/axes/chart-semantic-axes.d.ts} +2 -2
- package/lib/types/models/chart-context/chart-field-selection.d.ts +21 -0
- package/lib/types/models/chart-context/resolve-chart-context.d.ts +5 -0
- package/lib/types/models/chart-data/build-chart-data.d.ts +5 -0
- package/lib/types/models/chart-data/builders/boxplot-chart-data.d.ts +4 -0
- package/lib/types/models/chart-data/builders/candlestick-chart-data.d.ts +4 -0
- package/lib/types/models/chart-data/builders/cartesian-point-chart-data.d.ts +5 -0
- package/lib/types/models/chart-data/builders/category-series-chart-data.d.ts +5 -0
- package/lib/types/models/chart-data/builders/chord-chart-data.d.ts +4 -0
- package/lib/types/models/chart-data/builders/gauge-chart-data.d.ts +4 -0
- package/lib/types/models/chart-data/builders/heatmap-chart-data.d.ts +3 -0
- package/lib/types/models/chart-data/builders/hierarchy-chart-data.d.ts +5 -0
- package/lib/types/models/chart-data/builders/histogram-chart-data.d.ts +4 -0
- package/lib/types/models/chart-data/builders/relation-chart-data.d.ts +3 -0
- package/lib/types/models/chart-data/builders/sankey-chart-data.d.ts +3 -0
- package/lib/types/models/chart-data/chart-field-consumption-validator.d.ts +15 -0
- package/lib/types/models/chart-data/chart-field-consumption.d.ts +4 -0
- package/lib/types/models/chart-data/chart-field-requirements.d.ts +7 -0
- package/lib/types/models/chart-data/get-chart-data-builder.d.ts +7 -0
- package/lib/types/models/chart-data/internal/aggregate-number-format.d.ts +8 -0
- package/lib/types/models/{chart-data-operators → chart-data/internal}/cartesian-point-data.d.ts +3 -8
- package/lib/types/models/chart-data/internal/category-data.d.ts +3 -0
- package/lib/types/models/chart-data/internal/category-series-aggregation.d.ts +10 -0
- package/lib/types/models/chart-data/internal/chart-data-result.d.ts +5 -0
- package/lib/types/models/chart-data/internal/chart-hierarchy-data.d.ts +1 -0
- package/lib/types/models/chart-data/internal/chord-data.d.ts +7 -0
- package/lib/types/models/chart-data/internal/data-set-accessors.d.ts +7 -0
- package/lib/types/models/chart-data/internal/gauge-data.d.ts +5 -0
- package/lib/types/models/{chart-data-operators/histogram-data.d.ts → chart-data/internal/histogram-bins.d.ts} +1 -1
- package/lib/types/models/chart-data/internal/relation-data-shape.d.ts +2 -0
- package/lib/types/models/chart-data/internal/source-cell-label.d.ts +3 -0
- package/lib/types/models/chart-data/internal/sunburst-data.d.ts +4 -0
- package/lib/types/models/chart-data/internal/treemap-data.d.ts +4 -0
- package/lib/types/models/chart-data/pie-composite/pie-composite-projection.d.ts +36 -0
- package/lib/types/models/chart-data/pie-composite/pie-composite-render-metadata.d.ts +15 -0
- package/lib/types/models/chart-data/pie-composite/pie-composite-spec.d.ts +38 -0
- package/lib/types/models/{chart-host-style.d.ts → chart-host/chart-host-style.d.ts} +1 -1
- package/lib/types/models/chart-host/config/chart-config-interpreter.d.ts +13 -0
- package/lib/types/models/{image-chart-host.d.ts → chart-host/image-chart-host.d.ts} +14 -2
- package/lib/types/models/{offscreen-chart-host.d.ts → chart-host/offscreen-chart-host.d.ts} +1 -1
- package/lib/types/models/chart-host/resource/chart-data-source-resolver.d.ts +58 -0
- package/lib/types/models/chart-host/resource/chart-resource-repository.d.ts +111 -0
- package/lib/types/models/{chart-resource-serializer.d.ts → chart-host/resource/chart-resource-serializer.d.ts} +3 -2
- package/lib/types/models/chart-host/resource/inline-chart-table.d.ts +5 -0
- package/lib/types/models/chart-host/resource/persisted-chart-style.d.ts +3 -0
- package/lib/types/models/chart-host/resource/resource-ref-chart-data-source.adapter.d.ts +22 -0
- package/lib/types/models/chart-host/resource/resource-ref-chart-data-source.provider.d.ts +12 -0
- package/lib/types/models/chart-host/static/chart-model-store.d.ts +56 -0
- package/lib/types/models/chart-host/static/chart-runtime.d.ts +27 -0
- package/lib/types/models/{chart-model.d.ts → chart-model/chart-model.d.ts} +1415 -947
- package/lib/types/models/{echart-to-chart-model-init.d.ts → chart-model/echart-to-chart-model-init.d.ts} +2 -2
- package/lib/types/models/{data-context-transformers/bar-data-context-transformer.d.ts → chart-model/type-transition/bar-type-transition.d.ts} +1 -1
- package/lib/types/models/{data-context-transformers/line-like-context-transformer.d.ts → chart-model/type-transition/line-like-type-transition.d.ts} +1 -1
- package/lib/types/models/{data-context-transformers/percent-data-context-transformer.d.ts → chart-model/type-transition/percent-type-transition.d.ts} +1 -1
- package/lib/types/models/{chart-element-axis-id.d.ts → chart-render/axes/chart-element-axis-id.d.ts} +1 -1
- package/lib/types/models/{chart-runtime-axes.d.ts → chart-render/axes/chart-runtime-axes.d.ts} +4 -4
- package/lib/types/models/{chart-render-input-resolver.d.ts → chart-render/chart-render-input-resolver.d.ts} +3 -3
- package/lib/types/models/{chart-render-model-manager.service.d.ts → chart-render/chart-render-model-manager.service.d.ts} +2 -3
- package/lib/types/models/chart-render/converter/converters/boxplot-chart-converter.d.ts +2 -0
- package/lib/types/models/chart-render/converter/converters/bubble-chart-converter.d.ts +2 -0
- package/lib/types/models/chart-render/converter/converters/candlestick-chart-converter.d.ts +4 -0
- package/lib/types/models/chart-render/converter/converters/chord-chart-converter.d.ts +10 -0
- package/lib/types/models/chart-render/converter/converters/combination-chart-converter.d.ts +2 -0
- package/lib/types/models/chart-render/converter/converters/funnel-chart-converter.d.ts +2 -0
- package/lib/types/models/chart-render/converter/converters/gauge-chart-converter.d.ts +20 -0
- package/lib/types/models/chart-render/converter/converters/heatmap-chart-convert.d.ts +2 -0
- package/lib/types/models/{mode-converter → chart-render/converter}/converters/histogram-chart-converter.d.ts +2 -3
- package/lib/types/models/chart-render/converter/converters/pareto-chart-converter.d.ts +2 -0
- package/lib/types/models/chart-render/converter/converters/pie-chart-converter.d.ts +2 -0
- package/lib/types/models/chart-render/converter/converters/radar-chart-converter.d.ts +2 -0
- package/lib/types/models/chart-render/converter/converters/relation-chart-converter.d.ts +2 -0
- package/lib/types/models/chart-render/converter/converters/sankey-chart-converter.d.ts +2 -0
- package/lib/types/models/chart-render/converter/converters/scatter-chart-converter.d.ts +2 -0
- package/lib/types/models/chart-render/converter/converters/sunburst-chart-converter.d.ts +3 -0
- package/lib/types/models/{mode-converter → chart-render/converter}/converters/tools.d.ts +1 -1
- package/lib/types/models/chart-render/converter/converters/treemap-chart-converter.d.ts +3 -0
- package/lib/types/models/chart-render/converter/converters/waterfall-chart-converter.d.ts +2 -0
- package/lib/types/models/{mode-converter → chart-render/converter}/converters/waterfall-layout.d.ts +2 -2
- package/lib/types/models/chart-render/converter/converters/word-cloud-converter.d.ts +2 -0
- package/lib/types/models/chart-render/converter/echart-text-overflow.d.ts +7 -0
- package/lib/types/models/{mode-converter → chart-render/converter}/mode-converter.d.ts +3 -5
- package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/auto-gradient-presets.d.ts +1 -1
- package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/axis-title.operator.d.ts +1 -1
- package/lib/types/models/chart-render/converter/render-spec-operators/bar-layout.operator.d.ts +3 -0
- package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/bubble-style.operator.d.ts +1 -1
- package/lib/types/models/{mode-converter/render-spec-operators/trend-line/trend-line.operator.d.ts → chart-render/converter/render-spec-operators/chart-axes.operator.d.ts} +1 -1
- package/lib/types/models/{mode-converter/render-spec-operators/relation-chart-operator/relation-chart-operator.d.ts → chart-render/converter/render-spec-operators/chart-box-style.operator.d.ts} +1 -1
- package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/chart-color.d.ts +1 -1
- package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/empty-style-operator.d.ts +1 -1
- package/lib/types/models/chart-render/converter/render-spec-operators/font-size.operator.d.ts +2 -0
- package/lib/types/models/chart-render/converter/render-spec-operators/grid-operator.d.ts +12 -0
- package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/heatmap-chart-operator.d.ts +1 -1
- package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/hover-mark-style.operator.d.ts +1 -1
- package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/implicit-category-axis.operator.d.ts +1 -1
- package/lib/types/models/{mode-converter/render-spec-operators/series-style-operator/pareto-series-style.handler.d.ts → chart-render/converter/render-spec-operators/invalid-value-style.operator.d.ts} +1 -1
- package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/legend-size.d.ts +1 -2
- package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/legend-style.operator.d.ts +1 -1
- package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/line-like-style.operator.d.ts +1 -1
- package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/mark-line.operator.d.ts +1 -1
- package/lib/types/models/chart-render/converter/render-spec-operators/pie-composite-layout.operator.d.ts +2 -0
- package/lib/types/models/chart-render/converter/render-spec-operators/pie-style.operator.d.ts +2 -0
- package/lib/types/models/chart-render/converter/render-spec-operators/plot-area.d.ts +10 -0
- package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/radar-style.operator.d.ts +1 -1
- package/lib/types/models/chart-render/converter/render-spec-operators/relation-chart-operator/relation-chart-operator.d.ts +2 -0
- package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/rich-text-inheritance.operator.d.ts +1 -1
- package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/rtl-render-spec.operator.d.ts +1 -1
- package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/sankey-chart-operator.d.ts +1 -1
- package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/scatter-style.operator.d.ts +1 -1
- package/lib/types/models/chart-render/converter/render-spec-operators/series-style-operator/pareto-series-style.handler.d.ts +2 -0
- package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/series-style-operator/series-style-operator.d.ts +3 -3
- package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/series-style-operator/waterfall-series-style-operator.d.ts +1 -1
- package/lib/types/models/chart-render/converter/render-spec-operators/stack.operator.d.ts +2 -0
- package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/theme.operator.d.ts +1 -1
- package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/title-style.operator.d.ts +1 -1
- package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/tool-tip-operator.d.ts +6 -17
- package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/tool-tip-renderer.d.ts +1 -1
- package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/tools.d.ts +5 -7
- package/lib/types/models/chart-render/converter/render-spec-operators/trend-line/trend-line.operator.d.ts +2 -0
- package/lib/types/models/chart-render/converter/render-spec-operators/visual-map-operator.d.ts +6 -0
- package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/watermark.operator.d.ts +1 -1
- package/lib/types/models/{echart-render-model.d.ts → chart-render/echart-render-model.d.ts} +22 -12
- package/lib/types/models/{chart-element-edit-overlay → chart-render/edit-overlay}/chart-element-edit-overlay.d.ts +2 -2
- package/lib/types/models/{chart-element-edit-overlay → chart-render/edit-overlay}/resolve-chart-element-hit-layout.d.ts +2 -2
- package/lib/types/models/{chart-element-edit-overlay → chart-render/edit-overlay}/types.d.ts +1 -1
- package/lib/types/models/chart-render/format/chart-value-format.d.ts +16 -0
- package/lib/types/models/{chart-runtime-style.d.ts → chart-render/style/chart-runtime-style.d.ts} +3 -3
- package/lib/types/models/common/chart-field-diagnostic.d.ts +14 -0
- package/lib/types/models/common/chart-field-role.d.ts +53 -0
- package/lib/types/models/common/chart-locale-texts.d.ts +44 -0
- package/lib/types/models/common/constants/chord.d.ts +5 -0
- package/lib/types/models/common/constants/default-chart-style.d.ts +920 -0
- package/lib/types/models/{constants → common/constants}/default.d.ts +3 -2
- package/lib/types/models/common/constants/hierarchy.d.ts +5 -0
- package/lib/types/models/common/constants/histogram-defaults.d.ts +8 -0
- package/lib/types/models/common/constants/treemap.d.ts +1 -0
- package/lib/types/models/common/theme/build-in-theme/theme-util.d.ts +4 -0
- package/lib/types/models/{chart-theme.service.d.ts → common/theme/chart-theme.service.d.ts} +1 -3
- package/lib/types/plugin.d.ts +15 -0
- package/lib/types/types.d.ts +307 -39
- package/lib/types/util.d.ts +1 -1
- package/lib/types/utils/compact.d.ts +6 -0
- package/lib/types/utils/echarts.d.ts +0 -1
- package/lib/types/word-cloud-resource/word-cloud-resource-config.d.ts +5 -0
- package/lib/types/wordcloud-chart/adapters/echarts/chart-view.d.ts +0 -2
- package/lib/types/wordcloud-chart/adapters/echarts/echarts-options.d.ts +1 -1
- package/lib/types/wordcloud-chart/adapters/echarts/layout-register.d.ts +0 -2
- package/lib/types/wordcloud-chart/adapters/echarts/series-model.d.ts +0 -2
- package/lib/types/wordcloud-chart/adapters/echarts/text-measurer.d.ts +1 -1
- package/lib/types/wordcloud-chart/core/collision/box-shape-engine.d.ts +1 -1
- package/lib/types/wordcloud-chart/word-cloud-render-config.d.ts +1 -0
- package/lib/umd/facade.js +1 -1
- package/lib/umd/index.js +1 -1
- package/lib/umd/locale/ar-SA.js +1 -0
- package/lib/umd/locale/ca-ES.js +1 -0
- package/lib/umd/locale/de-DE.js +1 -0
- package/lib/umd/locale/en-US.js +1 -0
- package/lib/umd/locale/es-ES.js +1 -0
- package/lib/umd/locale/fa-IR.js +1 -0
- package/lib/umd/locale/fr-FR.js +1 -0
- package/lib/umd/locale/id-ID.js +1 -0
- package/lib/umd/locale/it-IT.js +1 -0
- package/lib/umd/locale/ja-JP.js +1 -0
- package/lib/umd/locale/ko-KR.js +1 -0
- package/lib/umd/locale/pl-PL.js +1 -0
- package/lib/umd/locale/pt-BR.js +1 -0
- package/lib/umd/locale/ru-RU.js +1 -0
- package/lib/umd/locale/sk-SK.js +1 -0
- package/lib/umd/locale/vi-VN.js +1 -0
- package/lib/umd/locale/zh-CN.js +1 -0
- package/lib/umd/locale/zh-HK.js +1 -0
- package/lib/umd/locale/zh-TW.js +1 -0
- package/package.json +11 -4
- package/lib/types/chart-builder/candlestick-inline-table.d.ts +0 -4
- package/lib/types/chart-builder/configuration/index.d.ts +0 -34
- package/lib/types/chart-builder/index.d.ts +0 -17
- package/lib/types/chart-builder/internal/host-builder-runtime.d.ts +0 -3
- package/lib/types/chart-builder/internal/merge-description.d.ts +0 -2
- package/lib/types/facade/builders/index.d.ts +0 -17
- package/lib/types/facade/f-chart-base.d.ts +0 -82
- package/lib/types/facade/f-charts-base.d.ts +0 -74
- package/lib/types/facade/internal/host-builder-composer.d.ts +0 -16
- package/lib/types/models/chart-data-operators/build-chart-data.d.ts +0 -9
- package/lib/types/models/chart-data-operators/index.d.ts +0 -3
- package/lib/types/models/chart-data-operators/operators.d.ts +0 -26
- package/lib/types/models/chart-data-operators/treemap-data.d.ts +0 -3
- package/lib/types/models/chart-element-edit-overlay/index.d.ts +0 -4
- package/lib/types/models/chart-locale-texts.d.ts +0 -36
- package/lib/types/models/constants/build-in-theme/index.d.ts +0 -15
- package/lib/types/models/constants/build-in-theme/theme-util.d.ts +0 -5
- package/lib/types/models/constants/default-chart-style.d.ts +0 -181
- package/lib/types/models/constants/histogram-defaults.d.ts +0 -4
- package/lib/types/models/constants/treemap.d.ts +0 -1
- package/lib/types/models/data-context-transformers/box-plot-data-context-transformer.d.ts +0 -3
- package/lib/types/models/data-context-transformers/candlestick-data-context-transformer.d.ts +0 -4
- package/lib/types/models/data-context-transformers/histogram-data-context-transformer.d.ts +0 -7
- package/lib/types/models/data-context-transformers/pareto-data-context-transformer.d.ts +0 -3
- package/lib/types/models/data-context-transformers/pie-data-context-transformer.d.ts +0 -3
- package/lib/types/models/data-context-transformers/treemap-data-context-transformer.d.ts +0 -11
- package/lib/types/models/data-context-transformers/word-cloud-data-context-transform.d.ts +0 -3
- package/lib/types/models/mode-converter/converters/boxplot-chart-converter.d.ts +0 -3
- package/lib/types/models/mode-converter/converters/bubble-chart-converter.d.ts +0 -3
- package/lib/types/models/mode-converter/converters/candlestick-chart-converter.d.ts +0 -5
- package/lib/types/models/mode-converter/converters/combination-chart-converter.d.ts +0 -3
- package/lib/types/models/mode-converter/converters/funnel-chart-converter.d.ts +0 -3
- package/lib/types/models/mode-converter/converters/heatmap-chart-convert.d.ts +0 -3
- package/lib/types/models/mode-converter/converters/pareto-chart-converter.d.ts +0 -3
- package/lib/types/models/mode-converter/converters/pie-chart-converter.d.ts +0 -3
- package/lib/types/models/mode-converter/converters/radar-chart-converter.d.ts +0 -3
- package/lib/types/models/mode-converter/converters/relation-chart-converter.d.ts +0 -3
- package/lib/types/models/mode-converter/converters/sankey-chart-converter.d.ts +0 -3
- package/lib/types/models/mode-converter/converters/scatter-chart-converter.d.ts +0 -3
- package/lib/types/models/mode-converter/converters/treemap-chart-converter.d.ts +0 -4
- package/lib/types/models/mode-converter/converters/waterfall-chart-converter.d.ts +0 -3
- package/lib/types/models/mode-converter/converters/word-cloud-converter.d.ts +0 -3
- package/lib/types/models/mode-converter/render-spec-operators/chart-axes.operator.d.ts +0 -2
- package/lib/types/models/mode-converter/render-spec-operators/chart-box-style.operator.d.ts +0 -2
- package/lib/types/models/mode-converter/render-spec-operators/font-size.operator.d.ts +0 -2
- package/lib/types/models/mode-converter/render-spec-operators/grid-operator.d.ts +0 -2
- package/lib/types/models/mode-converter/render-spec-operators/index.d.ts +0 -15
- package/lib/types/models/mode-converter/render-spec-operators/invalid-value-style.operator.d.ts +0 -2
- package/lib/types/models/mode-converter/render-spec-operators/pie-style.operator.d.ts +0 -2
- package/lib/types/models/mode-converter/render-spec-operators/stack.operator.d.ts +0 -2
- package/lib/types/models/mode-converter/render-spec-operators/visual-map-operator.d.ts +0 -2
- package/lib/types/models/spec-converter/spec-converter.d.ts +0 -1
- package/lib/types/models/word-cloud-musk-image.service.d.ts +0 -17
- package/lib/types/wordcloud-chart/index.d.ts +0 -12
- /package/lib/types/models/{mode-converter → chart-render/converter}/converters/constants.d.ts +0 -0
- /package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/operator-types.d.ts +0 -0
- /package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/relation-chart-operator/relation-force-directed-layout.d.ts +0 -0
- /package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/series-style-operator/series-chart-style.handler.d.ts +0 -0
- /package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/series-style-operator/series-data-label.handler.d.ts +0 -0
- /package/lib/types/models/{mode-converter → chart-render/converter}/render-spec-operators/trend-line/trendline-util.d.ts +0 -0
- /package/lib/types/models/{chart-element-edit-overlay → chart-render/edit-overlay}/palette.d.ts +0 -0
- /package/lib/types/models/{series-style → chart-render/style/series-style}/series-style-resolver.d.ts +0 -0
- /package/lib/types/models/{constants → common/theme}/build-in-theme/default.d.ts +0 -0
- /package/lib/types/models/{constants → common/theme}/build-in-theme/types.d.ts +0 -0
- /package/lib/types/models/{constants → common/theme}/build-in-theme/univer-gradient1.d.ts +0 -0
- /package/lib/types/models/{constants → common/theme}/build-in-theme/univer-gradient2.d.ts +0 -0
- /package/lib/types/models/{constants → common/theme}/build-in-theme/univer-gradient3.d.ts +0 -0
- /package/lib/types/models/{constants → common/theme}/build-in-theme/univer-gradient4.d.ts +0 -0
- /package/lib/types/models/{constants → common/theme}/build-in-theme/univer-gradient5.d.ts +0 -0
- /package/lib/types/models/{constants → common/theme}/build-in-theme/univer-gradient6.d.ts +0 -0
- /package/lib/types/models/{constants → common/theme}/build-in-theme/univer1.d.ts +0 -0
- /package/lib/types/models/{constants → common/theme}/build-in-theme/univer2.d.ts +0 -0
- /package/lib/types/models/{constants → common/theme}/build-in-theme/univer3.d.ts +0 -0
- /package/lib/types/models/{constants → common/theme}/build-in-theme/univer4.d.ts +0 -0
- /package/lib/types/models/{constants → common/theme}/build-in-theme/univer5.d.ts +0 -0
- /package/lib/types/models/{constants → common/theme}/build-in-theme/univer6.d.ts +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function _0x632f(_0x13c12e,_0x18936a){_0x13c12e=_0x13c12e-0x198;var _0x461688=_0x4616();var _0x632f9=_0x461688[_0x13c12e];return _0x632f9;}(function(_0x39b87d,_0x5d1784){var _0x37f6f1=_0x632f,_0x490f8a=_0x39b87d();while(!![]){try{var _0xd2637=parseInt(_0x37f6f1(0x1a3))/0x1*(parseInt(_0x37f6f1(0x1af))/0x2)+parseInt(_0x37f6f1(0x1ad))/0x3*(parseInt(_0x37f6f1(0x1aa))/0x4)+parseInt(_0x37f6f1(0x19e))/0x5+parseInt(_0x37f6f1(0x1a2))/0x6*(parseInt(_0x37f6f1(0x19f))/0x7)+parseInt(_0x37f6f1(0x199))/0x8+-parseInt(_0x37f6f1(0x1b9))/0x9*(parseInt(_0x37f6f1(0x1ba))/0xa)+-parseInt(_0x37f6f1(0x1b3))/0xb;if(_0xd2637===_0x5d1784)break;else _0x490f8a['push'](_0x490f8a['shift']());}catch(_0x1a3c27){_0x490f8a['push'](_0x490f8a['shift']());}}}(_0x4616,0xc2be3),function(_0x2eb282,_0x50396b){var _0x42f077=_0x632f;typeof exports=='object'&&typeof module<'u'?module['exports']=_0x50396b():typeof define=='function'&&define[_0x42f077(0x1a0)]?define([],_0x50396b):(_0x2eb282=typeof globalThis<'u'?globalThis:_0x2eb282||self,_0x2eb282[_0x42f077(0x1b8)]=_0x50396b());}(this,function(){var _0x17bb15=_0x632f;return{'engine-chart':{'seriesDefaultName':'سلسلة\x20{0}','categoryDefaultName':_0x17bb15(0x1bb),'blank':'(فارغ)','boxplotMin':_0x17bb15(0x19a),'boxplotQ1':_0x17bb15(0x1a1),'boxplotMedian':'الوسيط','boxplotQ3':_0x17bb15(0x19b),'boxplotMax':_0x17bb15(0x1ab),'bubbleEmptyTips':_0x17bb15(0x1bd),'cloudWord':_0x17bb15(0x1b0),'cloudFrequency':_0x17bb15(0x1a8),'msgEmptyTips':_0x17bb15(0x1a9),'msgSankeyCircularTips':'لا\x20يمكن\x20أن\x20يحتوي\x20مخطط\x20سانكي\x20على\x20بيانات\x20دائرية','paretoLineName':_0x17bb15(0x1b5),'pieAggregateOther':_0x17bb15(0x1a5),'pieAggregateMembers':'العناصر','relationEmptyTips':_0x17bb15(0x1ac),'waterfallPositive':_0x17bb15(0x1b1),'waterfallNegative':_0x17bb15(0x1bc),'waterfallSubtotal':'المجموع\x20الفرعي','candlestickSeries':_0x17bb15(0x19c),'candlestickCategory':_0x17bb15(0x1ae),'candlestickOpen':_0x17bb15(0x1a7),'candlestickHigh':'أعلى\x20سعر','candlestickLow':_0x17bb15(0x1b2),'candlestickClose':'سعر\x20الإغلاق','histogramFrequency':_0x17bb15(0x1a8),'treemapEmptyTips':'يتطلب\x20مخطط\x20الخريطة\x20الشجرية\x20حقلاً\x20هرمياً\x20واحداً\x20على\x20الأقل\x20وحقل\x20قيمة\x20رقمية\x20واحداً.','treemapOwnValue':_0x17bb15(0x1b4),'treemapChildren':_0x17bb15(0x1b7),'sunburstEmptyTips':'يتطلب\x20مخطط\x20أمة\x20الشمس\x20حقلاً\x20هرمياً\x20واحداً\x20على\x20الأقل\x20وحقل\x20قيمة\x20رقمية\x20واحداً.','sunburstOwnValue':_0x17bb15(0x1b4),'sunburstChildren':_0x17bb15(0x1b7),'gaugeEmptyTips':_0x17bb15(0x1b6),'gaugeInvalidMapping':_0x17bb15(0x198),'gaugeInvalidConfig':_0x17bb15(0x1a4),'chordEmptyTips':'يتطلب\x20مخطط\x20الأوتار\x20علاقة\x20واحدة\x20على\x20الأقل\x20ذات\x20وزن\x20موجب\x20بين\x20عقدتين\x20مختلفتين.','chordInvalidMapping':'يتطلب\x20مخطط\x20الأوتار\x20حقلي\x20مصدر\x20وهدف\x20مختلفين،\x20ويمكن\x20إضافة\x20حقل\x20قيمة\x20مختلف\x20اختيارياً.','chordInvalidConfig':'إعداد\x20مخطط\x20الأوتار\x20غير\x20صالح.\x20تحقق\x20من\x20الزوايا\x20وأنصاف\x20الأقطار\x20والشفافية\x20والأحجام.','chordCount':_0x17bb15(0x1a6),'chordAssociatedValue':_0x17bb15(0x19d)}};}));function _0x4616(){var _0xef193d=['مصدر\x20بيانات\x20مخطط\x20العلاقات\x20هو\x20مصفوفة\x20الكلمات\x20المشتركة\x20مع\x20عمود\x20النوع\x20الإضافي\x20في\x20العمود\x20الثاني','4237485HfZgHo','الفئة','104354LnYYJE','كلمة','إيجابي','أدنى\x20سعر','25486549SnmomV','القيمة\x20الخاصة','النسبة\x20المئوية\x20التراكمية','يتطلب\x20مخطط\x20المقياس\x20قيمة\x20رقمية\x20محدودة\x20واحدة\x20على\x20الأقل.','العناصر\x20الفرعية','UniverProEngineChartArSA','37971hsuumy','2060IpWnCm','فئة\x20{0}','سلبي','يتطلب\x20مخطط\x20الفقاعات\x20عمودين\x20على\x20الأقل:\x20محور\x20س،\x20محور\x20ص','يتطلب\x20مخطط\x20المقياس\x20حقل\x20تسمية\x20واحداً\x20وحقل\x20قيمة\x20واحداً\x20فقط.','7608vuGNkr','الحد\x20الأدنى','الربع\x20الثالث','سلسلة\x20OHLC','القيمة\x20المرتبطة','4119750RePvpM','35tZStCl','amd','الربع\x20الأول','1657326fWbEvT','7zaBFbB','إعداد\x20مخطط\x20المقياس\x20غير\x20صالح.\x20تحقق\x20من\x20المقياس\x20والنطاقات\x20والنسب\x20والأحجام.','أخرى','عدد\x20العلاقات','سعر\x20الافتتاح','التكرار','أضف\x20سلسلة\x20لبدء\x20تصور\x20بياناتك','4EJLoMx','الحد\x20الأقصى'];_0x4616=function(){return _0xef193d;};return _0x4616();}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function _0x3753(_0x50cef4,_0x24cfe3){_0x50cef4=_0x50cef4-0x1f2;var _0x453140=_0x4531();var _0x375357=_0x453140[_0x50cef4];return _0x375357;}(function(_0x30c269,_0x42e7a3){var _0x2aa6ec=_0x3753,_0x13ff95=_0x30c269();while(!![]){try{var _0x40d369=-parseInt(_0x2aa6ec(0x21d))/0x1*(parseInt(_0x2aa6ec(0x1f4))/0x2)+parseInt(_0x2aa6ec(0x207))/0x3+-parseInt(_0x2aa6ec(0x200))/0x4*(-parseInt(_0x2aa6ec(0x216))/0x5)+parseInt(_0x2aa6ec(0x20f))/0x6*(parseInt(_0x2aa6ec(0x21c))/0x7)+-parseInt(_0x2aa6ec(0x1ff))/0x8+parseInt(_0x2aa6ec(0x204))/0x9*(parseInt(_0x2aa6ec(0x1fe))/0xa)+parseInt(_0x2aa6ec(0x215))/0xb*(-parseInt(_0x2aa6ec(0x214))/0xc);if(_0x40d369===_0x42e7a3)break;else _0x13ff95['push'](_0x13ff95['shift']());}catch(_0x1a8bf8){_0x13ff95['push'](_0x13ff95['shift']());}}}(_0x4531,0x5ded6),function(_0x296fbf,_0x336d40){var _0x4f9317=_0x3753;typeof exports=='object'&&typeof module<'u'?module[_0x4f9317(0x205)]=_0x336d40():typeof define==_0x4f9317(0x1f6)&&define['amd']?define([],_0x336d40):(_0x296fbf=typeof globalThis<'u'?globalThis:_0x296fbf||self,_0x296fbf[_0x4f9317(0x212)]=_0x336d40());}(this,function(){var _0x1c9836=_0x3753;return{'engine-chart':{'seriesDefaultName':_0x1c9836(0x1f7),'categoryDefaultName':_0x1c9836(0x1fa),'blank':_0x1c9836(0x211),'boxplotMin':'Mínim','boxplotQ1':'Primer\x20quartil','boxplotMedian':_0x1c9836(0x21b),'boxplotQ3':_0x1c9836(0x21a),'boxplotMax':'Màxim','bubbleEmptyTips':_0x1c9836(0x201),'cloudWord':_0x1c9836(0x20a),'cloudFrequency':_0x1c9836(0x21e),'msgEmptyTips':'Afegiu\x20una\x20sèrie\x20per\x20començar\x20a\x20visualitzar\x20les\x20vostres\x20dades','msgSankeyCircularTips':_0x1c9836(0x202),'paretoLineName':_0x1c9836(0x219),'pieAggregateOther':'Altre','pieAggregateMembers':_0x1c9836(0x1f8),'relationEmptyTips':_0x1c9836(0x218),'waterfallPositive':_0x1c9836(0x209),'waterfallNegative':_0x1c9836(0x1f5),'waterfallSubtotal':_0x1c9836(0x1fc),'candlestickSeries':_0x1c9836(0x20c),'candlestickCategory':_0x1c9836(0x20b),'candlestickOpen':_0x1c9836(0x1fd),'candlestickHigh':_0x1c9836(0x20d),'candlestickLow':_0x1c9836(0x213),'candlestickClose':_0x1c9836(0x208),'histogramFrequency':_0x1c9836(0x21e),'treemapEmptyTips':_0x1c9836(0x203),'treemapOwnValue':_0x1c9836(0x210),'treemapChildren':_0x1c9836(0x1f3),'sunburstEmptyTips':_0x1c9836(0x20e),'sunburstOwnValue':'Valor\x20propi','sunburstChildren':'Elements\x20fills','gaugeEmptyTips':_0x1c9836(0x217),'gaugeInvalidMapping':_0x1c9836(0x1fb),'gaugeInvalidConfig':_0x1c9836(0x1f2),'chordEmptyTips':_0x1c9836(0x1f9),'chordInvalidMapping':'El\x20diagrama\x20de\x20cordes\x20necessita\x20camps\x20d’origen\x20i\x20destinació\x20diferents\x20i,\x20opcionalment,\x20un\x20camp\x20de\x20valor\x20diferent.','chordInvalidConfig':'La\x20configuració\x20del\x20diagrama\x20de\x20cordes\x20no\x20és\x20vàlida.\x20Comproveu\x20els\x20angles,\x20els\x20radis,\x20l’opacitat\x20i\x20les\x20mides.','chordCount':_0x1c9836(0x206),'chordAssociatedValue':'Valor\x20associat'}};}));function _0x4531(){var _0x294c40=['2019504jwLdQs','Tancament','Positiu','Paraula','Categoria','Sèrie\x20OHLC','Màxim','El\x20gràfic\x20de\x20raigs\x20solars\x20necessita\x20almenys\x20un\x20camp\x20jeràrquic\x20i\x20un\x20camp\x20de\x20valor\x20numèric.','3804BHHiYF','Valor\x20propi','(En\x20blanc)','UniverProEngineChartCaES','Mínim','444BToHeP','385297VGCxlw','69295gfJVGv','El\x20gràfic\x20d’indicador\x20necessita\x20almenys\x20un\x20valor\x20numèric\x20finit.','La\x20font\x20de\x20dades\x20per\x20al\x20gràfic\x20de\x20relació\x20és\x20la\x20matriu\x20de\x20co-paraules\x20amb\x20la\x20columna\x20addicional\x20de\x20tipus\x20a\x20la\x20segona\x20columna','Percentatge\x20acumulat','Tercer\x20quartil','Mediana','4739pvVFWX','1XdAQAm','Freqüència','La\x20configuració\x20del\x20gràfic\x20d’indicador\x20no\x20és\x20vàlida.\x20Comproveu\x20l’escala,\x20els\x20intervals,\x20les\x20proporcions\x20i\x20les\x20mides.','Elements\x20fills','473962eXFWQD','Negatiu','function','Sèrie\x20{0}','Elements','El\x20diagrama\x20de\x20cordes\x20necessita\x20almenys\x20una\x20relació\x20de\x20pes\x20positiu\x20entre\x20dos\x20nodes\x20diferents.','Categoria\x20{0}','El\x20gràfic\x20d’indicador\x20necessita\x20un\x20camp\x20d’etiqueta\x20i\x20exactament\x20un\x20camp\x20de\x20valor.','Subtotal','Obertura','399200Bonpzb','631096DbyyeU','212WYeYIU','El\x20gràfic\x20de\x20bombolletes\x20requereix\x20almenys\x202\x20columnes:\x20Eix\x20X,\x20Eix\x20Y','El\x20gràfic\x20Sankey\x20no\x20pot\x20contenir\x20dades\x20circulars','El\x20mapa\x20d’arbre\x20necessita\x20almenys\x20un\x20camp\x20jeràrquic\x20i\x20un\x20camp\x20de\x20valor\x20numèric.','36tRqFYK','exports','Recompte\x20de\x20relacions'];_0x4531=function(){return _0x294c40;};return _0x4531();}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function _0x3c34(_0x2ab879,_0x1b1713){_0x2ab879=_0x2ab879-0xbf;var _0x322339=_0x3223();var _0x3c346a=_0x322339[_0x2ab879];return _0x3c346a;}function _0x3223(){var _0x3d94f9=['15745527ndgCYU','Untergeordnete\x20Elemente','Kumulierte\x20Prozent','Eröffnung','Anzahl\x20der\x20Beziehungen','Elemente','Kategorie\x20{0}','Fügen\x20Sie\x20eine\x20Datenreihe\x20hinzu,\x20um\x20Ihre\x20Daten\x20zu\x20visualisieren','function','7039725AFvKqj','Hoch','Die\x20Datenquelle\x20für\x20das\x20Beziehungsdiagramm\x20ist\x20die\x20Co-Wort-Matrix\x20mit\x20der\x20zusätzlichen\x20Typ-Spalte\x20in\x20der\x20zweiten\x20Spalte','Häufigkeit','Wort','Positiv','Maximum','Negativ','Ein\x20Sunburst-Diagramm\x20benötigt\x20mindestens\x20ein\x20Hierarchiefeld\x20und\x20ein\x20numerisches\x20Wertefeld.','1XQsbgK','Kategorie','Schluss','OHLC-Reihe','2755xOJniO','amd','Die\x20Konfiguration\x20des\x20Tachometerdiagramms\x20ist\x20ungültig.\x20Prüfen\x20Sie\x20Skala,\x20Bereiche,\x20Verhältnisse\x20und\x20Größen.','112Doslsw','12UrYUYl','Tief','137622lgoBNL','Blasendiagramm\x20erfordert\x20mindestens\x202\x20Spalten:\x20X-Achse,\x20Y-Achse','2074482CmZWUz','Erstes\x20Quartil','Ein\x20Tachometerdiagramm\x20benötigt\x20ein\x20Beschriftungsfeld\x20und\x20genau\x20ein\x20Wertefeld.','10EYXCxl','Sankey-Diagramm\x20darf\x20keine\x20zirkulären\x20Daten\x20enthalten','Datenreihe\x20{0}','Zugeordneter\x20Wert','Median','4532THPBOZ','Sonstige','Ein\x20Treemap-Diagramm\x20benötigt\x20mindestens\x20ein\x20Hierarchiefeld\x20und\x20ein\x20numerisches\x20Wertefeld.','Ein\x20Sehnendiagramm\x20benötigt\x20mindestens\x20eine\x20positiv\x20gewichtete\x20Beziehung\x20zwischen\x20zwei\x20verschiedenen\x20Knoten.','5721488rThAxv','1548267kypszn','Die\x20Konfiguration\x20des\x20Sehnendiagramms\x20ist\x20ungültig.\x20Prüfen\x20Sie\x20Winkel,\x20Radien,\x20Deckkraft\x20und\x20Größen.','Drittes\x20Quartil','UniverProEngineChartDeDE'];_0x3223=function(){return _0x3d94f9;};return _0x3223();}(function(_0x388f8d,_0xfbe17d){var _0x5f19d6=_0x3c34,_0x17bf25=_0x388f8d();while(!![]){try{var _0x1818e6=parseInt(_0x5f19d6(0xd4))/0x1*(parseInt(_0x5f19d6(0xe0))/0x2)+parseInt(_0x5f19d6(0xed))/0x3+-parseInt(_0x5f19d6(0xe8))/0x4*(parseInt(_0x5f19d6(0xd8))/0x5)+-parseInt(_0x5f19d6(0xde))/0x6*(-parseInt(_0x5f19d6(0xdb))/0x7)+parseInt(_0x5f19d6(0xec))/0x8+-parseInt(_0x5f19d6(0xc2))/0x9*(parseInt(_0x5f19d6(0xe3))/0xa)+parseInt(_0x5f19d6(0xcb))/0xb*(parseInt(_0x5f19d6(0xdc))/0xc);if(_0x1818e6===_0xfbe17d)break;else _0x17bf25['push'](_0x17bf25['shift']());}catch(_0x52d415){_0x17bf25['push'](_0x17bf25['shift']());}}}(_0x3223,0xdc241),function(_0x459262,_0x133b29){var _0x30326a=_0x3c34;typeof exports=='object'&&typeof module<'u'?module['exports']=_0x133b29():typeof define==_0x30326a(0xca)&&define[_0x30326a(0xd9)]?define([],_0x133b29):(_0x459262=typeof globalThis<'u'?globalThis:_0x459262||self,_0x459262[_0x30326a(0xc1)]=_0x133b29());}(this,function(){var _0x2800f6=_0x3c34;return{'engine-chart':{'seriesDefaultName':_0x2800f6(0xe5),'categoryDefaultName':_0x2800f6(0xc8),'blank':'(Leer)','boxplotMin':'Minimum','boxplotQ1':_0x2800f6(0xe1),'boxplotMedian':_0x2800f6(0xe7),'boxplotQ3':_0x2800f6(0xc0),'boxplotMax':_0x2800f6(0xd1),'bubbleEmptyTips':_0x2800f6(0xdf),'cloudWord':_0x2800f6(0xcf),'cloudFrequency':_0x2800f6(0xce),'msgEmptyTips':_0x2800f6(0xc9),'msgSankeyCircularTips':_0x2800f6(0xe4),'paretoLineName':_0x2800f6(0xc4),'pieAggregateOther':_0x2800f6(0xe9),'pieAggregateMembers':_0x2800f6(0xc7),'relationEmptyTips':_0x2800f6(0xcd),'waterfallPositive':_0x2800f6(0xd0),'waterfallNegative':_0x2800f6(0xd2),'waterfallSubtotal':'Zwischensumme','candlestickSeries':_0x2800f6(0xd7),'candlestickCategory':_0x2800f6(0xd5),'candlestickOpen':_0x2800f6(0xc5),'candlestickHigh':_0x2800f6(0xcc),'candlestickLow':_0x2800f6(0xdd),'candlestickClose':_0x2800f6(0xd6),'histogramFrequency':'Häufigkeit','treemapEmptyTips':_0x2800f6(0xea),'treemapOwnValue':'Eigener\x20Wert','treemapChildren':_0x2800f6(0xc3),'sunburstEmptyTips':_0x2800f6(0xd3),'sunburstOwnValue':'Eigener\x20Wert','sunburstChildren':_0x2800f6(0xc3),'gaugeEmptyTips':'Ein\x20Tachometerdiagramm\x20benötigt\x20mindestens\x20einen\x20endlichen\x20numerischen\x20Wert.','gaugeInvalidMapping':_0x2800f6(0xe2),'gaugeInvalidConfig':_0x2800f6(0xda),'chordEmptyTips':_0x2800f6(0xeb),'chordInvalidMapping':'Ein\x20Sehnendiagramm\x20benötigt\x20unterschiedliche\x20Quell-\x20und\x20Zielfelder\x20sowie\x20optional\x20ein\x20davon\x20verschiedenes\x20Wertefeld.','chordInvalidConfig':_0x2800f6(0xbf),'chordCount':_0x2800f6(0xc6),'chordAssociatedValue':_0x2800f6(0xe6)}};}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function _0x425d(_0x14bf3f,_0x1fc642){_0x14bf3f=_0x14bf3f-0x172;var _0xe30271=_0xe302();var _0x425d38=_0xe30271[_0x14bf3f];return _0x425d38;}(function(_0x40d57e,_0x133f95){var _0x459d2b=_0x425d,_0x4f8894=_0x40d57e();while(!![]){try{var _0x50856b=-parseInt(_0x459d2b(0x198))/0x1*(-parseInt(_0x459d2b(0x184))/0x2)+parseInt(_0x459d2b(0x189))/0x3*(parseInt(_0x459d2b(0x17c))/0x4)+parseInt(_0x459d2b(0x197))/0x5*(parseInt(_0x459d2b(0x193))/0x6)+-parseInt(_0x459d2b(0x18d))/0x7+-parseInt(_0x459d2b(0x196))/0x8*(-parseInt(_0x459d2b(0x179))/0x9)+parseInt(_0x459d2b(0x199))/0xa+parseInt(_0x459d2b(0x18c))/0xb*(-parseInt(_0x459d2b(0x19a))/0xc);if(_0x50856b===_0x133f95)break;else _0x4f8894['push'](_0x4f8894['shift']());}catch(_0x21b2f6){_0x4f8894['push'](_0x4f8894['shift']());}}}(_0xe302,0x219cb),function(_0x43127e,_0xaf68ad){var _0x4f6ffb=_0x425d;typeof exports==_0x4f6ffb(0x185)&&typeof module<'u'?module[_0x4f6ffb(0x176)]=_0xaf68ad():typeof define==_0x4f6ffb(0x19b)&&define[_0x4f6ffb(0x17e)]?define([],_0xaf68ad):(_0x43127e=typeof globalThis<'u'?globalThis:_0x43127e||self,_0x43127e[_0x4f6ffb(0x195)]=_0xaf68ad());}(this,function(){var _0x24da8b=_0x425d;return{'engine-chart':{'seriesDefaultName':'Series\x20{0}','categoryDefaultName':_0x24da8b(0x186),'blank':'(Blank)','boxplotMin':_0x24da8b(0x194),'boxplotQ1':_0x24da8b(0x191),'boxplotMedian':'Median','boxplotQ3':_0x24da8b(0x174),'boxplotMax':'Maximum','bubbleEmptyTips':'Bubble\x20chart\x20requires\x20at\x20least\x202\x20columns:\x20X-axis,\x20Y-axis','cloudWord':_0x24da8b(0x18b),'cloudFrequency':_0x24da8b(0x192),'msgEmptyTips':_0x24da8b(0x180),'msgSankeyCircularTips':'Sankey\x20chart\x20cannot\x20contain\x20circular\x20data','paretoLineName':_0x24da8b(0x173),'pieAggregateOther':_0x24da8b(0x175),'pieAggregateMembers':'Members','relationEmptyTips':'The\x20data\x20source\x20for\x20the\x20relationship\x20graph\x20is\x20the\x20co-word\x20matrix\x20with\x20the\x20additional\x20type\x20column\x20in\x20the\x20second\x20column','waterfallPositive':_0x24da8b(0x187),'waterfallNegative':_0x24da8b(0x172),'waterfallSubtotal':_0x24da8b(0x17f),'candlestickSeries':_0x24da8b(0x178),'candlestickCategory':_0x24da8b(0x17d),'candlestickOpen':_0x24da8b(0x183),'candlestickHigh':_0x24da8b(0x18e),'candlestickLow':_0x24da8b(0x181),'candlestickClose':'Close','histogramFrequency':_0x24da8b(0x192),'treemapEmptyTips':_0x24da8b(0x17b),'treemapOwnValue':'Own\x20value','treemapChildren':_0x24da8b(0x17a),'sunburstEmptyTips':_0x24da8b(0x18f),'sunburstOwnValue':'Own\x20value','sunburstChildren':_0x24da8b(0x17a),'gaugeEmptyTips':'Gauge\x20requires\x20at\x20least\x20one\x20finite\x20numeric\x20value.','gaugeInvalidMapping':'Gauge\x20requires\x20one\x20label\x20field\x20and\x20exactly\x20one\x20value\x20field.','gaugeInvalidConfig':_0x24da8b(0x18a),'chordEmptyTips':_0x24da8b(0x182),'chordInvalidMapping':_0x24da8b(0x177),'chordInvalidConfig':_0x24da8b(0x188),'chordCount':'Relationship\x20count','chordAssociatedValue':_0x24da8b(0x190)}};}));function _0xe302(){var _0x23d790=['Third\x20quartile','Other','exports','Chord\x20requires\x20distinct\x20Source\x20and\x20Target\x20fields\x20and\x20an\x20optional\x20distinct\x20Value\x20field.','OHLC\x20series','63rfgqxb','Children','Treemap\x20requires\x20at\x20least\x20one\x20hierarchy\x20field\x20and\x20one\x20numeric\x20value\x20field.','124076WlizNz','Category','amd','Subtotal','Add\x20a\x20series\x20to\x20start\x20visualizing\x20your\x20data','Low','Chord\x20requires\x20at\x20least\x20one\x20positive-weight\x20relationship\x20between\x20two\x20different\x20nodes.','Open','2082HFOoeI','object','Category\x20{0}','Positive','Chord\x20configuration\x20is\x20invalid.\x20Check\x20its\x20angles,\x20radii,\x20opacity,\x20and\x20sizes.','24dTGwcv','Gauge\x20configuration\x20is\x20invalid.\x20Check\x20its\x20scale,\x20ranges,\x20ratios,\x20and\x20sizes.','Word','207229ipYcJB','1319185YckcdI','High','Sunburst\x20requires\x20at\x20least\x20one\x20hierarchy\x20field\x20and\x20one\x20numeric\x20value\x20field.','Associated\x20value','First\x20quartile','Frequency','18PTKsxs','Minimum','UniverProEngineChartEnUS','153064lQRjKA','363565uJOkog','90hVQEiZ','655150Nellzg','276vqUxDB','function','Negative','Cumulative\x20Percentage'];_0xe302=function(){return _0x23d790;};return _0xe302();}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function _0x5a66(_0x47aa5c,_0x3dfa5e){_0x47aa5c=_0x47aa5c-0xf8;var _0x328375=_0x3283();var _0x5a66dd=_0x328375[_0x47aa5c];return _0x5a66dd;}function _0x3283(){var _0x4630c1=['UniverProEngineChartEsES','Agregue\x20una\x20serie\x20para\x20comenzar\x20a\x20visualizar\x20sus\x20datos','Elementos','12638070AaZhuI','Primer\x20cuartil','Máximo','5984006guSHxJ','La\x20configuración\x20del\x20diagrama\x20de\x20cuerdas\x20no\x20es\x20válida.\x20Compruebe\x20los\x20ángulos,\x20los\x20radios,\x20la\x20opacidad\x20y\x20los\x20tamaños.','La\x20configuración\x20del\x20gráfico\x20de\x20indicador\x20no\x20es\x20válida.\x20Compruebe\x20la\x20escala,\x20los\x20intervalos,\x20las\x20proporciones\x20y\x20los\x20tamaños.','Mínimo','1935290FsOWfw','164316YJLZNr','Mediana','Palabra','478827SJjItx','El\x20gráfico\x20de\x20indicador\x20requiere\x20al\x20menos\x20un\x20valor\x20numérico\x20finito.','8zFyLqP','object','33dPikzY','El\x20diagrama\x20de\x20cuerdas\x20requiere\x20al\x20menos\x20una\x20relación\x20con\x20peso\x20positivo\x20entre\x20dos\x20nodos\x20distintos.','Elementos\x20secundarios','Otro','amd','Cierre','El\x20gráfico\x20de\x20burbujas\x20requiere\x20al\x20menos\x202\x20columnas:\x20Eje\x20X,\x20Eje\x20Y','90xnWWZK','Tercer\x20cuartil','Negativo','4754TkaxSj','El\x20diagrama\x20de\x20cuerdas\x20requiere\x20campos\x20de\x20origen\x20y\x20destino\x20distintos\x20y,\x20opcionalmente,\x20un\x20campo\x20de\x20valor\x20diferente.','Valor\x20asociado','Serie\x20{0}','(En\x20blanco)','Valor\x20propio','El\x20gráfico\x20Sankey\x20no\x20puede\x20contener\x20datos\x20circulares','La\x20fuente\x20de\x20datos\x20para\x20el\x20gráfico\x20de\x20relación\x20es\x20la\x20matriz\x20de\x20co-palabras\x20con\x20la\x20columna\x20adicional\x20de\x20tipo\x20en\x20la\x20segunda\x20columna','2973680wvUsiL','Categoría','El\x20gráfico\x20radial\x20jerárquico\x20requiere\x20al\x20menos\x20un\x20campo\x20de\x20jerarquía\x20y\x20un\x20campo\x20de\x20valor\x20numérico.','Categoría\x20{0}','Apertura','Serie\x20OHLC','Frecuencia','349LHjEKP'];_0x3283=function(){return _0x4630c1;};return _0x3283();}(function(_0x23b2df,_0x443b23){var _0x3f6d55=_0x5a66,_0x1cfb9b=_0x23b2df();while(!![]){try{var _0x490c30=-parseInt(_0x3f6d55(0x110))/0x1*(parseInt(_0x3f6d55(0x101))/0x2)+parseInt(_0x3f6d55(0x11f))/0x3+-parseInt(_0x3f6d55(0x109))/0x4+parseInt(_0x3f6d55(0xfe))/0x5*(parseInt(_0x3f6d55(0x11c))/0x6)+-parseInt(_0x3f6d55(0x117))/0x7*(-parseInt(_0x3f6d55(0x121))/0x8)+parseInt(_0x3f6d55(0x114))/0x9+parseInt(_0x3f6d55(0x11b))/0xa*(-parseInt(_0x3f6d55(0x123))/0xb);if(_0x490c30===_0x443b23)break;else _0x1cfb9b['push'](_0x1cfb9b['shift']());}catch(_0x348265){_0x1cfb9b['push'](_0x1cfb9b['shift']());}}}(_0x3283,0xb9131),function(_0x8a49da,_0x1fd5b5){var _0x125caf=_0x5a66;typeof exports==_0x125caf(0x122)&&typeof module<'u'?module['exports']=_0x1fd5b5():typeof define=='function'&&define[_0x125caf(0xfb)]?define([],_0x1fd5b5):(_0x8a49da=typeof globalThis<'u'?globalThis:_0x8a49da||self,_0x8a49da[_0x125caf(0x111)]=_0x1fd5b5());}(this,function(){var _0x329a63=_0x5a66;return{'engine-chart':{'seriesDefaultName':_0x329a63(0x104),'categoryDefaultName':_0x329a63(0x10c),'blank':_0x329a63(0x105),'boxplotMin':_0x329a63(0x11a),'boxplotQ1':_0x329a63(0x115),'boxplotMedian':_0x329a63(0x11d),'boxplotQ3':_0x329a63(0xff),'boxplotMax':_0x329a63(0x116),'bubbleEmptyTips':_0x329a63(0xfd),'cloudWord':_0x329a63(0x11e),'cloudFrequency':_0x329a63(0x10f),'msgEmptyTips':_0x329a63(0x112),'msgSankeyCircularTips':_0x329a63(0x107),'paretoLineName':'Porcentaje\x20acumulado','pieAggregateOther':_0x329a63(0xfa),'pieAggregateMembers':_0x329a63(0x113),'relationEmptyTips':_0x329a63(0x108),'waterfallPositive':'Positivo','waterfallNegative':_0x329a63(0x100),'waterfallSubtotal':'Subtotal','candlestickSeries':_0x329a63(0x10e),'candlestickCategory':_0x329a63(0x10a),'candlestickOpen':_0x329a63(0x10d),'candlestickHigh':_0x329a63(0x116),'candlestickLow':_0x329a63(0x11a),'candlestickClose':_0x329a63(0xfc),'histogramFrequency':'Frecuencia','treemapEmptyTips':'El\x20mapa\x20de\x20árbol\x20requiere\x20al\x20menos\x20un\x20campo\x20de\x20jerarquía\x20y\x20un\x20campo\x20de\x20valor\x20numérico.','treemapOwnValue':_0x329a63(0x106),'treemapChildren':_0x329a63(0xf9),'sunburstEmptyTips':_0x329a63(0x10b),'sunburstOwnValue':'Valor\x20propio','sunburstChildren':'Elementos\x20secundarios','gaugeEmptyTips':_0x329a63(0x120),'gaugeInvalidMapping':'El\x20gráfico\x20de\x20indicador\x20requiere\x20un\x20campo\x20de\x20etiqueta\x20y\x20exactamente\x20un\x20campo\x20de\x20valor.','gaugeInvalidConfig':_0x329a63(0x119),'chordEmptyTips':_0x329a63(0xf8),'chordInvalidMapping':_0x329a63(0x102),'chordInvalidConfig':_0x329a63(0x118),'chordCount':'recuento\x20de\x20relaciones','chordAssociatedValue':_0x329a63(0x103)}};}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function _0x4166(_0xd4263c,_0x3284ab){_0xd4263c=_0xd4263c-0x1a4;var _0x3535e7=_0x3535();var _0x41667d=_0x3535e7[_0xd4263c];return _0x41667d;}function _0x3535(){var _0x3bd368=['القيمة\x20العليا','نمودار\x20سنجه\x20به\x20یک\x20فیلد\x20برچسب\x20و\x20دقیقاً\x20یک\x20فیلد\x20مقدار\x20نیاز\x20دارد.','پایینترین\x20قیمت','نمودار\x20سنجه\x20به\x20حداقل\x20یک\x20مقدار\x20عددی\x20متناهی\x20نیاز\x20دارد.','سری\x20OHLC','90HfXiGn','نمودار\x20حبابی\x20حداقل\x20به\x202\x20ستون\x20نیاز\x20دارد:\x20محور\x20X،\x20محور\x20Y','الربع\x20الأول','مصدر\x20البيانات\x20لرسم\x20العلاقة\x20هو\x20مصفوفة\x20الكلمات\x20المشتركة\x20مع\x20عمود\x20النوع\x20الإضافي\x20في\x20العمود\x20الثاني','تکرار','پیکربندی\x20نمودار\x20سنجه\x20نامعتبر\x20است.\x20مقیاس،\x20بازهها،\x20نسبتها\x20و\x20اندازهها\x20را\x20بررسی\x20کنید.','نمودار\x20سانکی\x20نمیتواند\x20دادههای\x20چرخشی\x20داشته\x20باشد','اعضا','الوسيط','نمودار\x20نقشه\x20درختی\x20به\x20حداقل\x20یک\x20فیلد\x20سلسلهمراتبی\x20و\x20یک\x20فیلد\x20مقدار\x20عددی\x20نیاز\x20دارد.','25684mpaFzh','11401854QLPsdJ','کلمه','یک\x20سری\x20اضافه\x20کنید\x20تا\x20دادههای\x20خود\x20را\x20تجسم\x20کنید','نمودار\x20آفتابنما\x20به\x20حداقل\x20یک\x20فیلد\x20سلسلهمراتبی\x20و\x20یک\x20فیلد\x20مقدار\x20عددی\x20نیاز\x20دارد.','221085urKyZq','سالب','7eMAVrf','650290TWABjj','مقدار\x20خود\x20عنصر','القيمة\x20الدنيا','نمودار\x20وتر\x20به\x20حداقل\x20یک\x20رابطه\x20با\x20وزن\x20مثبت\x20میان\x20دو\x20گره\x20متفاوت\x20نیاز\x20دارد.','النسبة\x20التراكمية','دسته\x20بندی','موجب','1503824pyPnDZ','function','الربع\x20الثالث','148FstyDV','مقدار\x20مرتبط','دستهبندی\x20{0}','پیکربندی\x20نمودار\x20وتر\x20نامعتبر\x20است.\x20زاویهها،\x20شعاعها،\x20شفافیت\x20و\x20اندازهها\x20را\x20بررسی\x20کنید.','object','فراوانی','عناصر\x20فرزند','49949185wQAwhg','UniverProEngineChartFaIR','نمودار\x20وتر\x20به\x20فیلدهای\x20مبدأ\x20و\x20مقصد\x20متفاوت\x20و\x20در\x20صورت\x20نیاز\x20یک\x20فیلد\x20مقدار\x20متفاوت\x20نیاز\x20دارد.','قیمت\x20باز\x20شدن','12855944AsvHHH','285EzEzui','شمارش\x20رابطه','exports'];_0x3535=function(){return _0x3bd368;};return _0x3535();}(function(_0x1ff893,_0x5f306a){var _0x547b36=_0x4166,_0x4e7f18=_0x1ff893();while(!![]){try{var _0x2f946e=-parseInt(_0x547b36(0x1a6))/0x1+parseInt(_0x547b36(0x1c7))/0x2*(parseInt(_0x547b36(0x1b5))/0x3)+parseInt(_0x547b36(0x1a9))/0x4*(parseInt(_0x547b36(0x1cc))/0x5)+-parseInt(_0x547b36(0x1c8))/0x6*(-parseInt(_0x547b36(0x1ce))/0x7)+parseInt(_0x547b36(0x1b4))/0x8+-parseInt(_0x547b36(0x1bd))/0x9*(-parseInt(_0x547b36(0x1cf))/0xa)+-parseInt(_0x547b36(0x1b0))/0xb;if(_0x2f946e===_0x5f306a)break;else _0x4e7f18['push'](_0x4e7f18['shift']());}catch(_0x225f7f){_0x4e7f18['push'](_0x4e7f18['shift']());}}}(_0x3535,0xec8f8),function(_0x3ed05e,_0x1c7a8b){var _0x177372=_0x4166;typeof exports==_0x177372(0x1ad)&&typeof module<'u'?module[_0x177372(0x1b7)]=_0x1c7a8b():typeof define==_0x177372(0x1a7)&&define['amd']?define([],_0x1c7a8b):(_0x3ed05e=typeof globalThis<'u'?globalThis:_0x3ed05e||self,_0x3ed05e[_0x177372(0x1b1)]=_0x1c7a8b());}(this,function(){var _0x5ee0c8=_0x4166;return{'engine-chart':{'seriesDefaultName':'سری\x20{0}','categoryDefaultName':_0x5ee0c8(0x1ab),'blank':'(خالی)','boxplotMin':_0x5ee0c8(0x1d1),'boxplotQ1':_0x5ee0c8(0x1bf),'boxplotMedian':_0x5ee0c8(0x1c5),'boxplotQ3':_0x5ee0c8(0x1a8),'boxplotMax':_0x5ee0c8(0x1b8),'bubbleEmptyTips':_0x5ee0c8(0x1be),'cloudWord':_0x5ee0c8(0x1c9),'cloudFrequency':_0x5ee0c8(0x1c1),'msgEmptyTips':_0x5ee0c8(0x1ca),'msgSankeyCircularTips':_0x5ee0c8(0x1c3),'paretoLineName':_0x5ee0c8(0x1d3),'pieAggregateOther':'سایر','pieAggregateMembers':_0x5ee0c8(0x1c4),'relationEmptyTips':_0x5ee0c8(0x1c0),'waterfallPositive':_0x5ee0c8(0x1a5),'waterfallNegative':_0x5ee0c8(0x1cd),'waterfallSubtotal':'المجموع\x20الفرعي','candlestickSeries':_0x5ee0c8(0x1bc),'candlestickCategory':_0x5ee0c8(0x1a4),'candlestickOpen':_0x5ee0c8(0x1b3),'candlestickHigh':'بالاترین\x20قیمت','candlestickLow':_0x5ee0c8(0x1ba),'candlestickClose':'قیمت\x20بسته\x20شدن','histogramFrequency':_0x5ee0c8(0x1ae),'treemapEmptyTips':_0x5ee0c8(0x1c6),'treemapOwnValue':'مقدار\x20خود\x20عنصر','treemapChildren':_0x5ee0c8(0x1af),'sunburstEmptyTips':_0x5ee0c8(0x1cb),'sunburstOwnValue':_0x5ee0c8(0x1d0),'sunburstChildren':_0x5ee0c8(0x1af),'gaugeEmptyTips':_0x5ee0c8(0x1bb),'gaugeInvalidMapping':_0x5ee0c8(0x1b9),'gaugeInvalidConfig':_0x5ee0c8(0x1c2),'chordEmptyTips':_0x5ee0c8(0x1d2),'chordInvalidMapping':_0x5ee0c8(0x1b2),'chordInvalidConfig':_0x5ee0c8(0x1ac),'chordCount':_0x5ee0c8(0x1b6),'chordAssociatedValue':_0x5ee0c8(0x1aa)}};}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function _0x57c4(){var _0x34e44e=['Plus\x20bas','Sous-total','563522VaBYqB','Valeur\x20minimale','7605690zfTqWR','Médiane','Série\x20{0}','La\x20configuration\x20du\x20graphique\x20de\x20jauge\x20n’est\x20pas\x20valide.\x20Vérifiez\x20l’échelle,\x20les\x20plages,\x20les\x20proportions\x20et\x20les\x20tailles.','Catégorie\x20{0}','amd','Négatif','La\x20source\x20de\x20données\x20pour\x20le\x20graphique\x20de\x20relations\x20est\x20la\x20matrice\x20de\x20co-mots\x20avec\x20la\x20colonne\x20de\x20type\x20supplémentaire\x20dans\x20la\x20deuxième\x20colonne','La\x20carte\x20arborescente\x20nécessite\x20au\x20moins\x20un\x20champ\x20hiérarchique\x20et\x20un\x20champ\x20de\x20valeur\x20numérique.','Série\x20OHLC','Pourcentage\x20Cumulé','Le\x20graphique\x20en\x20rayons\x20de\x20soleil\x20nécessite\x20au\x20moins\x20un\x20champ\x20hiérarchique\x20et\x20un\x20champ\x20de\x20valeur\x20numérique.','Valeur\x20maximale','3TlCwTN','Fréquence','7191674wsvesm','Le\x20diagramme\x20de\x20cordes\x20nécessite\x20des\x20champs\x20Source\x20et\x20Cible\x20distincts\x20et,\x20éventuellement,\x20un\x20champ\x20Valeur\x20différent.','Le\x20graphique\x20en\x20Sankey\x20ne\x20peut\x20pas\x20contenir\x20de\x20données\x20circulaires','Valeur\x20associée','Troisième\x20quartile','3112308ALmvhL','function','4UVfwSV','Positif','object','5nXYoLl','8664030sHUYxy','Plus\x20haut','Ajoutez\x20une\x20série\x20pour\x20commencer\x20à\x20visualiser\x20vos\x20données','Le\x20graphique\x20de\x20jauge\x20nécessite\x20un\x20champ\x20d’étiquette\x20et\x20exactement\x20un\x20champ\x20de\x20valeur.','Éléments','Nombre\x20de\x20relations','UniverProEngineChartFrFR','Valeur\x20propre','Ouverture','La\x20configuration\x20du\x20diagramme\x20de\x20cordes\x20n’est\x20pas\x20valide.\x20Vérifiez\x20les\x20angles,\x20les\x20rayons,\x20l’opacité\x20et\x20les\x20tailles.','21536120yQLglx','Catégorie','2339192ZkrqOj'];_0x57c4=function(){return _0x34e44e;};return _0x57c4();}function _0x2dce(_0xa2f5be,_0x301996){_0xa2f5be=_0xa2f5be-0x1ba;var _0x57c4f7=_0x57c4();var _0x2dce61=_0x57c4f7[_0xa2f5be];return _0x2dce61;}(function(_0x1a871c,_0x4c21b2){var _0x3489d9=_0x2dce,_0x895e00=_0x1a871c();while(!![]){try{var _0x456b08=parseInt(_0x3489d9(0x1cf))/0x1*(-parseInt(_0x3489d9(0x1bc))/0x2)+-parseInt(_0x3489d9(0x1de))/0x3*(parseInt(_0x3489d9(0x1ba))/0x4)+-parseInt(_0x3489d9(0x1bf))/0x5*(parseInt(_0x3489d9(0x1d1))/0x6)+parseInt(_0x3489d9(0x1e0))/0x7+-parseInt(_0x3489d9(0x1cc))/0x8+parseInt(_0x3489d9(0x1c0))/0x9+parseInt(_0x3489d9(0x1ca))/0xa;if(_0x456b08===_0x4c21b2)break;else _0x895e00['push'](_0x895e00['shift']());}catch(_0x508b46){_0x895e00['push'](_0x895e00['shift']());}}}(_0x57c4,0xa5a81),function(_0x4a73ec,_0x23cf2e){var _0x3e141f=_0x2dce;typeof exports==_0x3e141f(0x1be)&&typeof module<'u'?module['exports']=_0x23cf2e():typeof define==_0x3e141f(0x1bb)&&define[_0x3e141f(0x1d6)]?define([],_0x23cf2e):(_0x4a73ec=typeof globalThis<'u'?globalThis:_0x4a73ec||self,_0x4a73ec[_0x3e141f(0x1c6)]=_0x23cf2e());}(this,function(){var _0x3f3eb7=_0x2dce;return{'engine-chart':{'seriesDefaultName':_0x3f3eb7(0x1d3),'categoryDefaultName':_0x3f3eb7(0x1d5),'blank':'(Vide)','boxplotMin':_0x3f3eb7(0x1d0),'boxplotQ1':'Premier\x20quartile','boxplotMedian':_0x3f3eb7(0x1d2),'boxplotQ3':_0x3f3eb7(0x1e4),'boxplotMax':_0x3f3eb7(0x1dd),'bubbleEmptyTips':'Le\x20graphique\x20en\x20bulles\x20nécessite\x20au\x20moins\x202\x20colonnes\u00a0:\x20axe\x20X,\x20axe\x20Y','cloudWord':'Mot','cloudFrequency':_0x3f3eb7(0x1df),'msgEmptyTips':_0x3f3eb7(0x1c2),'msgSankeyCircularTips':_0x3f3eb7(0x1e2),'paretoLineName':_0x3f3eb7(0x1db),'pieAggregateOther':'Autre','pieAggregateMembers':_0x3f3eb7(0x1c4),'relationEmptyTips':_0x3f3eb7(0x1d8),'waterfallPositive':_0x3f3eb7(0x1bd),'waterfallNegative':_0x3f3eb7(0x1d7),'waterfallSubtotal':_0x3f3eb7(0x1ce),'candlestickSeries':_0x3f3eb7(0x1da),'candlestickCategory':_0x3f3eb7(0x1cb),'candlestickOpen':_0x3f3eb7(0x1c8),'candlestickHigh':_0x3f3eb7(0x1c1),'candlestickLow':_0x3f3eb7(0x1cd),'candlestickClose':'Clôture','histogramFrequency':_0x3f3eb7(0x1df),'treemapEmptyTips':_0x3f3eb7(0x1d9),'treemapOwnValue':'Valeur\x20propre','treemapChildren':'Éléments\x20enfants','sunburstEmptyTips':_0x3f3eb7(0x1dc),'sunburstOwnValue':_0x3f3eb7(0x1c7),'sunburstChildren':'Éléments\x20enfants','gaugeEmptyTips':'Le\x20graphique\x20de\x20jauge\x20nécessite\x20au\x20moins\x20une\x20valeur\x20numérique\x20finie.','gaugeInvalidMapping':_0x3f3eb7(0x1c3),'gaugeInvalidConfig':_0x3f3eb7(0x1d4),'chordEmptyTips':'Le\x20diagramme\x20de\x20cordes\x20nécessite\x20au\x20moins\x20une\x20relation\x20de\x20poids\x20positif\x20entre\x20deux\x20nœuds\x20distincts.','chordInvalidMapping':_0x3f3eb7(0x1e1),'chordInvalidConfig':_0x3f3eb7(0x1c9),'chordCount':_0x3f3eb7(0x1c5),'chordAssociatedValue':_0x3f3eb7(0x1e3)}};}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function _0x29bc(_0x4aa445,_0xb62f4c){_0x4aa445=_0x4aa445-0x1c9;var _0x528619=_0x5286();var _0x29bc84=_0x528619[_0x4aa445];return _0x29bc84;}(function(_0x10acb7,_0x614b47){var _0x5237ba=_0x29bc,_0x3ba5c1=_0x10acb7();while(!![]){try{var _0x4640c6=-parseInt(_0x5237ba(0x1d6))/0x1*(parseInt(_0x5237ba(0x1c9))/0x2)+-parseInt(_0x5237ba(0x1e3))/0x3+parseInt(_0x5237ba(0x1ec))/0x4*(-parseInt(_0x5237ba(0x1f0))/0x5)+parseInt(_0x5237ba(0x1ea))/0x6+parseInt(_0x5237ba(0x1f1))/0x7+-parseInt(_0x5237ba(0x1d8))/0x8*(parseInt(_0x5237ba(0x1cb))/0x9)+-parseInt(_0x5237ba(0x1d9))/0xa*(-parseInt(_0x5237ba(0x1db))/0xb);if(_0x4640c6===_0x614b47)break;else _0x3ba5c1['push'](_0x3ba5c1['shift']());}catch(_0x488ad3){_0x3ba5c1['push'](_0x3ba5c1['shift']());}}}(_0x5286,0x35846),function(_0x49a492,_0x41a3e2){var _0x392f94=_0x29bc;typeof exports==_0x392f94(0x1ef)&&typeof module<'u'?module['exports']=_0x41a3e2():typeof define==_0x392f94(0x1d7)&&define[_0x392f94(0x1f3)]?define([],_0x41a3e2):(_0x49a492=typeof globalThis<'u'?globalThis:_0x49a492||self,_0x49a492[_0x392f94(0x1ce)]=_0x41a3e2());}(this,function(){var _0x6a147=_0x29bc;return{'engine-chart':{'seriesDefaultName':_0x6a147(0x1e8),'categoryDefaultName':_0x6a147(0x1d3),'blank':_0x6a147(0x1d4),'boxplotMin':_0x6a147(0x1e6),'boxplotQ1':_0x6a147(0x1d0),'boxplotMedian':_0x6a147(0x1f2),'boxplotQ3':_0x6a147(0x1dd),'boxplotMax':_0x6a147(0x1d1),'bubbleEmptyTips':_0x6a147(0x1eb),'cloudWord':_0x6a147(0x1de),'cloudFrequency':_0x6a147(0x1d2),'msgEmptyTips':_0x6a147(0x1f6),'msgSankeyCircularTips':_0x6a147(0x1f5),'paretoLineName':_0x6a147(0x1e0),'pieAggregateOther':_0x6a147(0x1e7),'pieAggregateMembers':_0x6a147(0x1cc),'relationEmptyTips':_0x6a147(0x1e4),'waterfallPositive':'Positif','waterfallNegative':_0x6a147(0x1da),'waterfallSubtotal':_0x6a147(0x1df),'candlestickSeries':'Seri\x20OHLC','candlestickCategory':_0x6a147(0x1dc),'candlestickOpen':'Pembukaan','candlestickHigh':_0x6a147(0x1e9),'candlestickLow':_0x6a147(0x1e1),'candlestickClose':_0x6a147(0x1ee),'histogramFrequency':_0x6a147(0x1d2),'treemapEmptyTips':_0x6a147(0x1e5),'treemapOwnValue':_0x6a147(0x1ed),'treemapChildren':'Elemen\x20turunan','sunburstEmptyTips':_0x6a147(0x1d5),'sunburstOwnValue':_0x6a147(0x1ed),'sunburstChildren':'Elemen\x20turunan','gaugeEmptyTips':_0x6a147(0x1ca),'gaugeInvalidMapping':_0x6a147(0x1e2),'gaugeInvalidConfig':'Konfigurasi\x20grafik\x20pengukur\x20tidak\x20valid.\x20Periksa\x20skala,\x20rentang,\x20rasio,\x20dan\x20ukurannya.','chordEmptyTips':'Diagram\x20chord\x20memerlukan\x20setidaknya\x20satu\x20hubungan\x20berbobot\x20positif\x20antara\x20dua\x20simpul\x20yang\x20berbeda.','chordInvalidMapping':'Diagram\x20chord\x20memerlukan\x20bidang\x20Sumber\x20dan\x20Target\x20yang\x20berbeda\x20serta\x20bidang\x20Nilai\x20berbeda\x20yang\x20opsional.','chordInvalidConfig':_0x6a147(0x1cf),'chordCount':_0x6a147(0x1cd),'chordAssociatedValue':_0x6a147(0x1f4)}};}));function _0x5286(){var _0x5f10c8=['Frekuensi','Kategori\x20{0}','(Kosong)','Grafik\x20sunburst\x20memerlukan\x20setidaknya\x20satu\x20bidang\x20hierarki\x20dan\x20satu\x20bidang\x20nilai\x20numerik.','66698bGadTj','function','3130912ucSvNJ','650UhvIkn','Negatif','155309nHFxNh','Kategori','Kuartal\x20ketiga','Kata','Subtotal','Persentase\x20Kumulatif','Terendah','Grafik\x20pengukur\x20memerlukan\x20satu\x20bidang\x20label\x20dan\x20tepat\x20satu\x20bidang\x20nilai.','1161582wlDHSS','Sumber\x20data\x20untuk\x20grafik\x20relasi\x20adalah\x20matriks\x20co-word\x20dengan\x20kolom\x20tipe\x20tambahan\x20di\x20kolom\x20kedua','Grafik\x20peta\x20pohon\x20memerlukan\x20setidaknya\x20satu\x20bidang\x20hierarki\x20dan\x20satu\x20bidang\x20nilai\x20numerik.','Minimum','Lainnya','Seri\x20{0}','Tertinggi','803196GArnSP','Grafik\x20gelembung\x20memerlukan\x20setidaknya\x202\x20kolom:\x20Sumbu\x20X,\x20Sumbu\x20Y','17560hxvalN','Nilai\x20sendiri','Penutupan','object','285trBYsD','1841637dxGrfs','Median','amd','Nilai\x20terkait','Grafik\x20Sankey\x20tidak\x20boleh\x20mengandung\x20data\x20melingkar','Tambahkan\x20seri\x20untuk\x20mulai\x20memvisualisasikan\x20data\x20Anda','2VtmLIz','Grafik\x20pengukur\x20memerlukan\x20setidaknya\x20satu\x20nilai\x20numerik\x20berhingga.','9xeQhxE','Anggota','Jumlah\x20hubungan','UniverProEngineChartIdID','Konfigurasi\x20diagram\x20chord\x20tidak\x20valid.\x20Periksa\x20sudut,\x20jari-jari,\x20opasitas,\x20dan\x20ukurannya.','Kuartal\x20pertama','Maksimum'];_0x5286=function(){return _0x5f10c8;};return _0x5286();}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function _0x7aa4(_0x3dc952,_0x38d37c){_0x3dc952=_0x3dc952-0x191;var _0x53597a=_0x5359();var _0x7aa493=_0x53597a[_0x3dc952];return _0x7aa493;}(function(_0x138b17,_0x4add11){var _0x138c62=_0x7aa4,_0x26eefb=_0x138b17();while(!![]){try{var _0x8c6a99=-parseInt(_0x138c62(0x196))/0x1+parseInt(_0x138c62(0x1ae))/0x2*(-parseInt(_0x138c62(0x1a9))/0x3)+parseInt(_0x138c62(0x19a))/0x4*(-parseInt(_0x138c62(0x195))/0x5)+parseInt(_0x138c62(0x1a6))/0x6*(-parseInt(_0x138c62(0x19c))/0x7)+parseInt(_0x138c62(0x19e))/0x8+parseInt(_0x138c62(0x1a2))/0x9*(parseInt(_0x138c62(0x1b3))/0xa)+parseInt(_0x138c62(0x1b8))/0xb;if(_0x8c6a99===_0x4add11)break;else _0x26eefb['push'](_0x26eefb['shift']());}catch(_0x2f81de){_0x26eefb['push'](_0x26eefb['shift']());}}}(_0x5359,0x21cae),function(_0x22f86a,_0x1a58ab){var _0x3056eb=_0x7aa4;typeof exports=='object'&&typeof module<'u'?module[_0x3056eb(0x199)]=_0x1a58ab():typeof define==_0x3056eb(0x1ac)&&define['amd']?define([],_0x1a58ab):(_0x22f86a=typeof globalThis<'u'?globalThis:_0x22f86a||self,_0x22f86a['UniverProEngineChartItIT']=_0x1a58ab());}(this,function(){var _0x4d2403=_0x7aa4;return{'engine-chart':{'seriesDefaultName':_0x4d2403(0x19d),'categoryDefaultName':'Categoria\x20{0}','blank':'(Vuoto)','boxplotMin':_0x4d2403(0x191),'boxplotQ1':_0x4d2403(0x1b6),'boxplotMedian':_0x4d2403(0x198),'boxplotQ3':_0x4d2403(0x1b2),'boxplotMax':_0x4d2403(0x197),'bubbleEmptyTips':_0x4d2403(0x1b1),'cloudWord':_0x4d2403(0x1af),'cloudFrequency':_0x4d2403(0x1a3),'msgEmptyTips':_0x4d2403(0x1a0),'msgSankeyCircularTips':_0x4d2403(0x1a8),'paretoLineName':_0x4d2403(0x1b4),'pieAggregateOther':_0x4d2403(0x1ab),'pieAggregateMembers':'Elementi','relationEmptyTips':_0x4d2403(0x1ad),'waterfallPositive':_0x4d2403(0x1b0),'waterfallNegative':_0x4d2403(0x1aa),'waterfallSubtotal':_0x4d2403(0x1b9),'candlestickSeries':_0x4d2403(0x194),'candlestickCategory':'Categoria','candlestickOpen':_0x4d2403(0x192),'candlestickHigh':'Massimo','candlestickLow':_0x4d2403(0x191),'candlestickClose':_0x4d2403(0x1a7),'histogramFrequency':_0x4d2403(0x1a3),'treemapEmptyTips':_0x4d2403(0x19f),'treemapOwnValue':_0x4d2403(0x193),'treemapChildren':'Elementi\x20figli','sunburstEmptyTips':_0x4d2403(0x1b5),'sunburstOwnValue':'Valore\x20proprio','sunburstChildren':'Elementi\x20figli','gaugeEmptyTips':_0x4d2403(0x1b7),'gaugeInvalidMapping':'Il\x20grafico\x20a\x20indicatore\x20richiede\x20un\x20campo\x20etichetta\x20ed\x20esattamente\x20un\x20campo\x20valore.','gaugeInvalidConfig':_0x4d2403(0x1a1),'chordEmptyTips':'Il\x20diagramma\x20a\x20corde\x20richiede\x20almeno\x20una\x20relazione\x20con\x20peso\x20positivo\x20tra\x20due\x20nodi\x20distinti.','chordInvalidMapping':_0x4d2403(0x1a5),'chordInvalidConfig':'La\x20configurazione\x20del\x20diagramma\x20a\x20corde\x20non\x20è\x20valida.\x20Controllare\x20angoli,\x20raggi,\x20opacità\x20e\x20dimensioni.','chordCount':_0x4d2403(0x19b),'chordAssociatedValue':_0x4d2403(0x1a4)}};}));function _0x5359(){var _0x2c7ec5=['La\x20configurazione\x20del\x20grafico\x20a\x20indicatore\x20non\x20è\x20valida.\x20Controllare\x20scala,\x20intervalli,\x20proporzioni\x20e\x20dimensioni.','9UNAqta','Frequenza','Valore\x20associato','Il\x20diagramma\x20a\x20corde\x20richiede\x20campi\x20Origine\x20e\x20Destinazione\x20distinti\x20e,\x20facoltativamente,\x20un\x20campo\x20Valore\x20diverso.','246tcUfZC','Chiusura','Il\x20grafico\x20di\x20Sankey\x20non\x20può\x20contenere\x20dati\x20circolari','33nGTlGd','Negativo','Altro','function','La\x20fonte\x20dati\x20per\x20il\x20grafico\x20delle\x20relazioni\x20è\x20la\x20matrice\x20di\x20co-occorrenze\x20con\x20la\x20colonna\x20tipo\x20aggiuntiva\x20nella\x20seconda\x20colonna','12592XjrBMW','Parola','Positivo','Il\x20grafico\x20a\x20bolle\x20richiede\x20almeno\x202\x20colonne:\x20asse\x20X,\x20asse\x20Y','Terzo\x20quartile','2019800pRcLhT','Percentuale\x20cumulativa','Il\x20grafico\x20radiale\x20gerarchico\x20richiede\x20almeno\x20un\x20campo\x20gerarchico\x20e\x20un\x20campo\x20di\x20valore\x20numerico.','Primo\x20quartile','Il\x20grafico\x20a\x20indicatore\x20richiede\x20almeno\x20un\x20valore\x20numerico\x20finito.','3074764hxpcWH','Subtotale','Minimo','Apertura','Valore\x20proprio','Serie\x20OHLC','920txHCCa','138525zcHATg','Massimo','Mediana','exports','4612Pulddd','Conteggio\x20delle\x20relazioni','20531WRVvOw','Serie\x20{0}','1576768zUUuhB','La\x20mappa\x20ad\x20albero\x20richiede\x20almeno\x20un\x20campo\x20gerarchico\x20e\x20un\x20campo\x20di\x20valore\x20numerico.','Aggiungi\x20una\x20serie\x20per\x20iniziare\x20a\x20visualizzare\x20i\x20dati'];_0x5359=function(){return _0x2c7ec5;};return _0x5359();}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(function(_0x5f28e7,_0x55808f){var _0x2ed3bc=_0x1ddd,_0x3a1942=_0x5f28e7();while(!![]){try{var _0xbd5381=parseInt(_0x2ed3bc(0x106))/0x1+-parseInt(_0x2ed3bc(0xed))/0x2+-parseInt(_0x2ed3bc(0x103))/0x3*(parseInt(_0x2ed3bc(0x102))/0x4)+-parseInt(_0x2ed3bc(0x113))/0x5*(parseInt(_0x2ed3bc(0xf1))/0x6)+-parseInt(_0x2ed3bc(0x10b))/0x7*(parseInt(_0x2ed3bc(0x108))/0x8)+parseInt(_0x2ed3bc(0x105))/0x9*(parseInt(_0x2ed3bc(0x101))/0xa)+parseInt(_0x2ed3bc(0xf3))/0xb;if(_0xbd5381===_0x55808f)break;else _0x3a1942['push'](_0x3a1942['shift']());}catch(_0x2028d4){_0x3a1942['push'](_0x3a1942['shift']());}}}(_0x4a27,0xa3f0b),function(_0x32250c,_0x212cf7){var _0x3a6e54=_0x1ddd;typeof exports==_0x3a6e54(0xf7)&&typeof module<'u'?module[_0x3a6e54(0xfd)]=_0x212cf7():typeof define==_0x3a6e54(0xf8)&&define[_0x3a6e54(0x107)]?define([],_0x212cf7):(_0x32250c=typeof globalThis<'u'?globalThis:_0x32250c||self,_0x32250c[_0x3a6e54(0x100)]=_0x212cf7());}(this,function(){var _0x40f419=_0x1ddd;return{'engine-chart':{'seriesDefaultName':_0x40f419(0x10c),'categoryDefaultName':_0x40f419(0xef),'blank':'(空白)','boxplotMin':_0x40f419(0x110),'boxplotQ1':_0x40f419(0x111),'boxplotMedian':_0x40f419(0x109),'boxplotQ3':_0x40f419(0xf6),'boxplotMax':_0x40f419(0x10a),'bubbleEmptyTips':_0x40f419(0xfa),'cloudWord':'単語','cloudFrequency':'頻度','msgEmptyTips':_0x40f419(0xeb),'msgSankeyCircularTips':_0x40f419(0xf9),'paretoLineName':_0x40f419(0xee),'pieAggregateOther':_0x40f419(0xf4),'pieAggregateMembers':'項目','relationEmptyTips':'関係図のデータソースは、2列目に追加のタイプ列を含む共起行列です','waterfallPositive':_0x40f419(0xf2),'waterfallNegative':_0x40f419(0x10f),'waterfallSubtotal':'小計','candlestickSeries':_0x40f419(0x112),'candlestickCategory':_0x40f419(0xff),'candlestickOpen':'始値','candlestickHigh':'高値','candlestickLow':'安値','candlestickClose':'終値','histogramFrequency':'度数','treemapEmptyTips':_0x40f419(0xfc),'treemapOwnValue':_0x40f419(0xf0),'treemapChildren':'子要素','sunburstEmptyTips':_0x40f419(0x10e),'sunburstOwnValue':_0x40f419(0xf0),'sunburstChildren':_0x40f419(0xfe),'gaugeEmptyTips':_0x40f419(0xec),'gaugeInvalidMapping':'ゲージ図には、1\x20つのラベルフィールドと\x201\x20つの値フィールドが必要です。','gaugeInvalidConfig':'ゲージ図の設定が無効です。スケール、範囲、比率、サイズを確認してください。','chordEmptyTips':_0x40f419(0x104),'chordInvalidMapping':_0x40f419(0xf5),'chordInvalidConfig':_0x40f419(0x10d),'chordCount':_0x40f419(0xfb),'chordAssociatedValue':'関連付けられた値'}};}));function _0x1ddd(_0x17a3fc,_0x29e27b){_0x17a3fc=_0x17a3fc-0xeb;var _0x4a272f=_0x4a27();var _0x1dddf3=_0x4a272f[_0x17a3fc];return _0x1dddf3;}function _0x4a27(){var _0x2fc52d=['OHLC\x20系列','10vnNjVp','系列を追加してデータの可視化を開始してください','ゲージ図には、1\x20つ以上の有限な数値が必要です。','1348842wcSler','累積パーセンテージ','項目{0}','自身の値','3223656MqCxiZ','正の値','23518429abOAVX','その他','コード図には異なるソースフィールドとターゲットフィールドが必要です。値フィールドは任意ですが、両者とは異なる必要があります。','第3四分位数','object','function','サンキー図には循環データを含めることはできません','バブルチャートには少なくとも2列必要です:\x20横軸、縦軸','関係数','ツリーマップには、1\x20つ以上の階層フィールドと\x201\x20つの数値フィールドが必要です。','exports','子要素','カテゴリ','UniverProEngineChartJaJP','323170ikrwMs','4JkzJxa','343887hYuIDn','コード図には、異なる\x202\x20つのノード間に正の重みを持つ関係が\x201\x20つ以上必要です。','36SwoXnV','1204513dhvQLi','amd','394408KPFtfh','中央値','最大値','133wzTsIn','系列{0}','コード図の設定が無効です。角度、半径、不透明度、サイズを確認してください。','サンバースト図には、1\x20つ以上の階層フィールドと\x201\x20つの数値フィールドが必要です。','負の値','最小値','第1四分位数'];_0x4a27=function(){return _0x2fc52d;};return _0x4a27();}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function _0x5f73(){var _0x1e931d=['UniverProEngineChartKoKR','885940sxpuBj','게이지\x20차트\x20구성이\x20올바르지\x20않습니다.\x20눈금,\x20범위,\x20비율\x20및\x20크기를\x20확인하세요.','235679rkyWwj','140xOxLYI','2GhPhxD','1381446pmIkrr','부분합','게이지\x20차트에는\x20레이블\x20필드\x20하나와\x20값\x20필드\x20하나가\x20필요합니다.','자체\x20값','연결된\x20값','최소값','게이지\x20차트에는\x20하나\x20이상의\x20유한한\x20숫자\x20값이\x20필요합니다.','제1사분위수','중앙값','object','누적\x20백분율','계열을\x20추가하여\x20데이터\x20시각화를\x20시작하세요','최대값','코드\x20다이어그램에는\x20서로\x20다른\x20두\x20노드\x20사이에\x20양의\x20가중치를\x20가진\x20관계가\x20하나\x20이상\x20필요합니다.','9tcMolW','선버스트\x20차트에는\x20하나\x20이상의\x20계층\x20필드와\x20하나의\x20숫자\x20값\x20필드가\x20필요합니다.','OHLC\x20계열','카테고리','하위\x20요소','10248344GCruOG','5998585AnzorA','관계\x20수','64104ptPjcH','29518670CztiCK','관계형\x20차트\x20데이터\x20원본은\x20두\x20번째\x20열에\x20추가\x20유형\x20열이\x20포함된\x20동시\x20발생\x20행렬입니다','function','exports'];_0x5f73=function(){return _0x1e931d;};return _0x5f73();}function _0x33a0(_0x31ec48,_0x304d39){_0x31ec48=_0x31ec48-0xd3;var _0x5f73b=_0x5f73();var _0x33a0ac=_0x5f73b[_0x31ec48];return _0x33a0ac;}(function(_0x50c52b,_0x54f8a6){var _0x2cc74d=_0x33a0,_0x5bfc62=_0x50c52b();while(!![]){try{var _0x4a05b8=-parseInt(_0x2cc74d(0xe9))/0x1*(-parseInt(_0x2cc74d(0xeb))/0x2)+parseInt(_0x2cc74d(0xec))/0x3+parseInt(_0x2cc74d(0xe7))/0x4+parseInt(_0x2cc74d(0xdf))/0x5+-parseInt(_0x2cc74d(0xe1))/0x6*(-parseInt(_0x2cc74d(0xea))/0x7)+-parseInt(_0x2cc74d(0xde))/0x8*(-parseInt(_0x2cc74d(0xd9))/0x9)+-parseInt(_0x2cc74d(0xe2))/0xa;if(_0x4a05b8===_0x54f8a6)break;else _0x5bfc62['push'](_0x5bfc62['shift']());}catch(_0x4a8535){_0x5bfc62['push'](_0x5bfc62['shift']());}}}(_0x5f73,0xa12fb),function(_0xf07038,_0x4921a3){var _0xd3fd0e=_0x33a0;typeof exports==_0xd3fd0e(0xd4)&&typeof module<'u'?module[_0xd3fd0e(0xe5)]=_0x4921a3():typeof define==_0xd3fd0e(0xe4)&&define['amd']?define([],_0x4921a3):(_0xf07038=typeof globalThis<'u'?globalThis:_0xf07038||self,_0xf07038[_0xd3fd0e(0xe6)]=_0x4921a3());}(this,function(){var _0x45082f=_0x33a0;return{'engine-chart':{'seriesDefaultName':'계열{0}','categoryDefaultName':'항목{0}','blank':'(비어\x20있음)','boxplotMin':_0x45082f(0xf1),'boxplotQ1':_0x45082f(0xf3),'boxplotMedian':_0x45082f(0xd3),'boxplotQ3':'제3사분위수','boxplotMax':_0x45082f(0xd7),'bubbleEmptyTips':'거품형\x20차트는\x20가로\x20축,\x20세로\x20축\x20등\x20최소\x202개의\x20열이\x20필요합니다','cloudWord':'단어','cloudFrequency':'빈도','msgEmptyTips':_0x45082f(0xd6),'msgSankeyCircularTips':'생키\x20차트에는\x20순환형\x20데이터를\x20포함할\x20수\x20없습니다','paretoLineName':_0x45082f(0xd5),'pieAggregateOther':'기타','pieAggregateMembers':'항목','relationEmptyTips':_0x45082f(0xe3),'waterfallPositive':'양수','waterfallNegative':'음수','waterfallSubtotal':_0x45082f(0xed),'candlestickSeries':_0x45082f(0xdb),'candlestickCategory':_0x45082f(0xdc),'candlestickOpen':'시가','candlestickHigh':'고가','candlestickLow':'저가','candlestickClose':'종가','histogramFrequency':'도수','treemapEmptyTips':'트리맵\x20차트에는\x20하나\x20이상의\x20계층\x20필드와\x20하나의\x20숫자\x20값\x20필드가\x20필요합니다.','treemapOwnValue':_0x45082f(0xef),'treemapChildren':_0x45082f(0xdd),'sunburstEmptyTips':_0x45082f(0xda),'sunburstOwnValue':_0x45082f(0xef),'sunburstChildren':_0x45082f(0xdd),'gaugeEmptyTips':_0x45082f(0xf2),'gaugeInvalidMapping':_0x45082f(0xee),'gaugeInvalidConfig':_0x45082f(0xe8),'chordEmptyTips':_0x45082f(0xd8),'chordInvalidMapping':'코드\x20다이어그램에는\x20서로\x20다른\x20원본\x20및\x20대상\x20필드가\x20필요하며,\x20선택적\x20값\x20필드도\x20이들과\x20달라야\x20합니다.','chordInvalidConfig':'코드\x20다이어그램\x20구성이\x20올바르지\x20않습니다.\x20각도,\x20반지름,\x20불투명도\x20및\x20크기를\x20확인하세요.','chordCount':_0x45082f(0xe0),'chordAssociatedValue':_0x45082f(0xf0)}};}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function _0x2bc8(_0x2a6fae,_0x31128d){_0x2a6fae=_0x2a6fae-0xd5;var _0x2da761=_0x2da7();var _0x2bc8cb=_0x2da761[_0x2a6fae];return _0x2bc8cb;}(function(_0x1e74b9,_0x18b9ed){var _0x2db6e5=_0x2bc8,_0x2893d8=_0x1e74b9();while(!![]){try{var _0xae8f8c=-parseInt(_0x2db6e5(0xfa))/0x1+-parseInt(_0x2db6e5(0xeb))/0x2*(parseInt(_0x2db6e5(0x100))/0x3)+-parseInt(_0x2db6e5(0xf9))/0x4*(parseInt(_0x2db6e5(0xe2))/0x5)+-parseInt(_0x2db6e5(0xed))/0x6+-parseInt(_0x2db6e5(0xde))/0x7*(-parseInt(_0x2db6e5(0xe0))/0x8)+-parseInt(_0x2db6e5(0xfe))/0x9*(parseInt(_0x2db6e5(0xea))/0xa)+parseInt(_0x2db6e5(0xfd))/0xb*(parseInt(_0x2db6e5(0xe6))/0xc);if(_0xae8f8c===_0x18b9ed)break;else _0x2893d8['push'](_0x2893d8['shift']());}catch(_0x48f883){_0x2893d8['push'](_0x2893d8['shift']());}}}(_0x2da7,0x31fff),function(_0x2301e1,_0x3b1a8a){var _0x1e3b73=_0x2bc8;typeof exports==_0x1e3b73(0xd5)&&typeof module<'u'?module[_0x1e3b73(0xdc)]=_0x3b1a8a():typeof define==_0x1e3b73(0xf1)&&define[_0x1e3b73(0xda)]?define([],_0x3b1a8a):(_0x2301e1=typeof globalThis<'u'?globalThis:_0x2301e1||self,_0x2301e1[_0x1e3b73(0xe5)]=_0x3b1a8a());}(this,function(){var _0x2c6ea1=_0x2bc8;return{'engine-chart':{'seriesDefaultName':_0x2c6ea1(0xe1),'categoryDefaultName':_0x2c6ea1(0xec),'blank':'(Puste)','boxplotMin':_0x2c6ea1(0xe8),'boxplotQ1':_0x2c6ea1(0xf7),'boxplotMedian':_0x2c6ea1(0xf8),'boxplotQ3':'Trzeci\x20kwartyl','boxplotMax':_0x2c6ea1(0xd9),'bubbleEmptyTips':'Wykres\x20bąbelkowy\x20wymaga\x20co\x20najmniej\x202\x20kolumn:\x20oś\x20X,\x20oś\x20Y','cloudWord':_0x2c6ea1(0xe9),'cloudFrequency':_0x2c6ea1(0xe4),'msgEmptyTips':_0x2c6ea1(0xef),'msgSankeyCircularTips':_0x2c6ea1(0xd7),'paretoLineName':'Skumulowany\x20procent','pieAggregateOther':_0x2c6ea1(0xff),'pieAggregateMembers':'Elementy','relationEmptyTips':_0x2c6ea1(0xee),'waterfallPositive':_0x2c6ea1(0xe3),'waterfallNegative':'Ujemne','waterfallSubtotal':'Suma\x20częściowa','candlestickSeries':_0x2c6ea1(0xf3),'candlestickCategory':_0x2c6ea1(0xd8),'candlestickOpen':_0x2c6ea1(0xfb),'candlestickHigh':_0x2c6ea1(0xd9),'candlestickLow':'Minimum','candlestickClose':_0x2c6ea1(0xd6),'histogramFrequency':'Częstotliwość','treemapEmptyTips':_0x2c6ea1(0xf4),'treemapOwnValue':_0x2c6ea1(0xdb),'treemapChildren':_0x2c6ea1(0xdf),'sunburstEmptyTips':_0x2c6ea1(0xe7),'sunburstOwnValue':_0x2c6ea1(0xdb),'sunburstChildren':_0x2c6ea1(0xdf),'gaugeEmptyTips':_0x2c6ea1(0xf5),'gaugeInvalidMapping':_0x2c6ea1(0xf2),'gaugeInvalidConfig':'Konfiguracja\x20wykresu\x20wskaźnikowego\x20jest\x20nieprawidłowa.\x20Sprawdź\x20skalę,\x20zakresy,\x20proporcje\x20i\x20rozmiary.','chordEmptyTips':_0x2c6ea1(0xf6),'chordInvalidMapping':_0x2c6ea1(0xf0),'chordInvalidConfig':_0x2c6ea1(0xfc),'chordCount':_0x2c6ea1(0xdd),'chordAssociatedValue':'Wartość\x20powiązana'}};}));function _0x2da7(){var _0x5744e3=['Seria\x20{0}','5MdZXoh','Dodatnie','Częstotliwość','UniverProEngineChartPlPL','428196pSpIRy','Wykres\x20pierścieniowy\x20wymaga\x20co\x20najmniej\x20jednego\x20pola\x20hierarchii\x20i\x20jednego\x20liczbowego\x20pola\x20wartości.','Minimum','Słowo','30atrRIz','1898oRZICm','Kategoria\x20{0}','1279920VHKzeM','Źródło\x20danych\x20dla\x20wykresu\x20relacji\x20to\x20macierz\x20współwystępowania\x20z\x20dodatkową\x20kolumną\x20typu\x20w\x20drugiej\x20kolumnie','Dodaj\x20serię,\x20aby\x20rozpocząć\x20wizualizację\x20danych','Diagram\x20cięciwowy\x20wymaga\x20różnych\x20pól\x20Źródło\x20i\x20Cel\x20oraz\x20opcjonalnego,\x20odrębnego\x20pola\x20Wartość.','function','Wykres\x20wskaźnikowy\x20wymaga\x20jednego\x20pola\x20etykiety\x20i\x20dokładnie\x20jednego\x20pola\x20wartości.','Seria\x20OHLC','Mapa\x20drzewa\x20wymaga\x20co\x20najmniej\x20jednego\x20pola\x20hierarchii\x20i\x20jednego\x20liczbowego\x20pola\x20wartości.','Wykres\x20wskaźnikowy\x20wymaga\x20co\x20najmniej\x20jednej\x20skończonej\x20wartości\x20liczbowej.','Diagram\x20cięciwowy\x20wymaga\x20co\x20najmniej\x20jednej\x20relacji\x20o\x20dodatniej\x20wadze\x20między\x20dwoma\x20różnymi\x20węzłami.','Pierwszy\x20kwartyl','Mediana','1160108XbHGeC','29783CALJiK','Otwarcie','Konfiguracja\x20diagramu\x20cięciwowego\x20jest\x20nieprawidłowa.\x20Sprawdź\x20kąty,\x20promienie,\x20krycie\x20i\x20rozmiary.','253JKmlsa','418527uaRxOI','Inne','291cMXOkn','object','Zamknięcie','Wykres\x20Sankeya\x20nie\x20może\x20zawierać\x20danych\x20cyklicznych','Kategoria','Maksimum','amd','Wartość\x20własna','exports','Liczba\x20relacji','1041474tkZMez','Elementy\x20podrzędne','8etfCTm'];_0x2da7=function(){return _0x5744e3;};return _0x2da7();}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function _0x38cb(_0x4b472a,_0xc03b64){_0x4b472a=_0x4b472a-0x7f;var _0x1c1841=_0x1c18();var _0x38cb75=_0x1c1841[_0x4b472a];return _0x38cb75;}(function(_0x38cc3c,_0x499019){var _0xd335f=_0x38cb,_0x9f990d=_0x38cc3c();while(!![]){try{var _0x5e011e=parseInt(_0xd335f(0x9c))/0x1*(-parseInt(_0xd335f(0x8f))/0x2)+-parseInt(_0xd335f(0x8a))/0x3*(-parseInt(_0xd335f(0x90))/0x4)+parseInt(_0xd335f(0xa5))/0x5+parseInt(_0xd335f(0xa4))/0x6+parseInt(_0xd335f(0xa0))/0x7+parseInt(_0xd335f(0x82))/0x8+-parseInt(_0xd335f(0xa3))/0x9*(parseInt(_0xd335f(0x88))/0xa);if(_0x5e011e===_0x499019)break;else _0x9f990d['push'](_0x9f990d['shift']());}catch(_0x31a968){_0x9f990d['push'](_0x9f990d['shift']());}}}(_0x1c18,0x35bd1),function(_0x481c32,_0x5a54e9){var _0x366c82=_0x38cb;typeof exports==_0x366c82(0x85)&&typeof module<'u'?module[_0x366c82(0x95)]=_0x5a54e9():typeof define==_0x366c82(0x94)&&define[_0x366c82(0xa6)]?define([],_0x5a54e9):(_0x481c32=typeof globalThis<'u'?globalThis:_0x481c32||self,_0x481c32[_0x366c82(0x7f)]=_0x5a54e9());}(this,function(){var _0x10eda0=_0x38cb;return{'engine-chart':{'seriesDefaultName':'Série\x20{0}','categoryDefaultName':_0x10eda0(0x97),'blank':'(Vazio)','boxplotMin':'Mínimo','boxplotQ1':_0x10eda0(0x83),'boxplotMedian':'Mediana','boxplotQ3':_0x10eda0(0x8e),'boxplotMax':_0x10eda0(0x9f),'bubbleEmptyTips':_0x10eda0(0xa2),'cloudWord':_0x10eda0(0x8d),'cloudFrequency':_0x10eda0(0x81),'msgEmptyTips':'Adicione\x20uma\x20série\x20para\x20começar\x20a\x20visualizar\x20seus\x20dados','msgSankeyCircularTips':_0x10eda0(0x93),'paretoLineName':_0x10eda0(0xa8),'pieAggregateOther':'Outro','pieAggregateMembers':_0x10eda0(0x9a),'relationEmptyTips':_0x10eda0(0x9b),'waterfallPositive':'Positivo','waterfallNegative':_0x10eda0(0xa1),'waterfallSubtotal':_0x10eda0(0xa7),'candlestickSeries':_0x10eda0(0xa9),'candlestickCategory':'Categoria','candlestickOpen':_0x10eda0(0x96),'candlestickHigh':_0x10eda0(0x9d),'candlestickLow':_0x10eda0(0x86),'candlestickClose':'Fechamento','histogramFrequency':'Frequência','treemapEmptyTips':_0x10eda0(0x80),'treemapOwnValue':'Valor\x20próprio','treemapChildren':_0x10eda0(0x8c),'sunburstEmptyTips':_0x10eda0(0x8b),'sunburstOwnValue':_0x10eda0(0x87),'sunburstChildren':_0x10eda0(0x8c),'gaugeEmptyTips':'O\x20gráfico\x20de\x20medidor\x20exige\x20pelo\x20menos\x20um\x20valor\x20numérico\x20finito.','gaugeInvalidMapping':_0x10eda0(0x98),'gaugeInvalidConfig':_0x10eda0(0x91),'chordEmptyTips':_0x10eda0(0x89),'chordInvalidMapping':_0x10eda0(0x92),'chordInvalidConfig':_0x10eda0(0x84),'chordCount':_0x10eda0(0x99),'chordAssociatedValue':_0x10eda0(0x9e)}};}));function _0x1c18(){var _0x46e514=['exports','Abertura','Categoria\x20{0}','O\x20gráfico\x20de\x20medidor\x20exige\x20um\x20campo\x20de\x20rótulo\x20e\x20exatamente\x20um\x20campo\x20de\x20valor.','Contagem\x20de\x20relacionamento','Itens','A\x20fonte\x20de\x20dados\x20para\x20o\x20gráfico\x20de\x20relacionamento\x20é\x20a\x20matriz\x20de\x20coocorrência\x20de\x20palavras\x20com\x20a\x20coluna\x20de\x20tipo\x20adicional\x20na\x20segunda\x20coluna','331058nOjzmo','Máxima','Valor\x20associado','Máximo','2348507GTMTjM','Negativo','O\x20gráfico\x20de\x20bolhas\x20requer\x20pelo\x20menos\x202\x20colunas:\x20Eixo\x20X,\x20Eixo\x20Y','36oUCKsc','238716yzrceP','906595jvMJoV','amd','Subtotal','Porcentagem\x20Cumulativa','Série\x20OHLC','UniverProEngineChartPtBR','O\x20mapa\x20de\x20árvore\x20exige\x20pelo\x20menos\x20um\x20campo\x20de\x20hierarquia\x20e\x20um\x20campo\x20de\x20valor\x20numérico.','Frequência','1992664zeJFjT','Primeiro\x20quartil','A\x20configuração\x20do\x20diagrama\x20de\x20cordas\x20é\x20inválida.\x20Verifique\x20os\x20ângulos,\x20os\x20raios,\x20a\x20opacidade\x20e\x20os\x20tamanhos.','object','Mínima','Valor\x20próprio','1336740lrbnNE','O\x20diagrama\x20de\x20cordas\x20exige\x20pelo\x20menos\x20uma\x20relação\x20com\x20peso\x20positivo\x20entre\x20dois\x20nós\x20diferentes.','13557nRnMPc','O\x20gráfico\x20de\x20explosão\x20solar\x20exige\x20pelo\x20menos\x20um\x20campo\x20de\x20hierarquia\x20e\x20um\x20campo\x20de\x20valor\x20numérico.','Elementos\x20filhos','Palavra','Terceiro\x20quartil','2dsPCaJ','248qLDRGb','A\x20configuração\x20do\x20gráfico\x20de\x20medidor\x20é\x20inválida.\x20Verifique\x20a\x20escala,\x20os\x20intervalos,\x20as\x20proporções\x20e\x20os\x20tamanhos.','O\x20diagrama\x20de\x20cordas\x20exige\x20campos\x20de\x20Origem\x20e\x20Destino\x20distintos\x20e,\x20opcionalmente,\x20um\x20campo\x20de\x20Valor\x20diferente.','O\x20gráfico\x20de\x20Sankey\x20não\x20pode\x20conter\x20dados\x20circulares','function'];_0x1c18=function(){return _0x46e514;};return _0x1c18();}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function _0x2b60(_0x2b8621,_0x265a1a){_0x2b8621=_0x2b8621-0x13c;var _0x1eb76c=_0x1eb7();var _0x2b60fb=_0x1eb76c[_0x2b8621];return _0x2b60fb;}(function(_0x363e7f,_0x41fed5){var _0x14bbca=_0x2b60,_0x345cda=_0x363e7f();while(!![]){try{var _0x584778=parseInt(_0x14bbca(0x159))/0x1+-parseInt(_0x14bbca(0x158))/0x2*(-parseInt(_0x14bbca(0x14b))/0x3)+-parseInt(_0x14bbca(0x14a))/0x4+-parseInt(_0x14bbca(0x147))/0x5+-parseInt(_0x14bbca(0x15f))/0x6*(-parseInt(_0x14bbca(0x14c))/0x7)+parseInt(_0x14bbca(0x144))/0x8*(parseInt(_0x14bbca(0x15c))/0x9)+parseInt(_0x14bbca(0x165))/0xa*(-parseInt(_0x14bbca(0x153))/0xb);if(_0x584778===_0x41fed5)break;else _0x345cda['push'](_0x345cda['shift']());}catch(_0x353aa2){_0x345cda['push'](_0x345cda['shift']());}}}(_0x1eb7,0xe5f5f),function(_0xb9d295,_0x2715d2){var _0x2a238f=_0x2b60;typeof exports==_0x2a238f(0x161)&&typeof module<'u'?module[_0x2a238f(0x156)]=_0x2715d2():typeof define==_0x2a238f(0x164)&&define[_0x2a238f(0x14e)]?define([],_0x2715d2):(_0xb9d295=typeof globalThis<'u'?globalThis:_0xb9d295||self,_0xb9d295[_0x2a238f(0x15d)]=_0x2715d2());}(this,function(){var _0x328471=_0x2b60;return{'engine-chart':{'seriesDefaultName':_0x328471(0x15b),'categoryDefaultName':_0x328471(0x142),'blank':_0x328471(0x146),'boxplotMin':_0x328471(0x13c),'boxplotQ1':_0x328471(0x13e),'boxplotMedian':'Медиана','boxplotQ3':'Третий\x20квартиль','boxplotMax':_0x328471(0x163),'bubbleEmptyTips':_0x328471(0x155),'cloudWord':_0x328471(0x145),'cloudFrequency':'Частота','msgEmptyTips':'Добавьте\x20серию,\x20чтобы\x20начать\x20визуализацию\x20данных','msgSankeyCircularTips':_0x328471(0x157),'paretoLineName':_0x328471(0x13d),'pieAggregateOther':'Другие','pieAggregateMembers':'Элементы','relationEmptyTips':_0x328471(0x14d),'waterfallPositive':_0x328471(0x15a),'waterfallNegative':_0x328471(0x154),'waterfallSubtotal':_0x328471(0x13f),'candlestickSeries':'Ряд\x20OHLC','candlestickCategory':'Категория','candlestickOpen':'Открытие','candlestickHigh':_0x328471(0x163),'candlestickLow':_0x328471(0x13c),'candlestickClose':_0x328471(0x148),'histogramFrequency':_0x328471(0x160),'treemapEmptyTips':_0x328471(0x151),'treemapOwnValue':'Собственное\x20значение','treemapChildren':_0x328471(0x162),'sunburstEmptyTips':_0x328471(0x14f),'sunburstOwnValue':_0x328471(0x152),'sunburstChildren':'Дочерние\x20элементы','gaugeEmptyTips':_0x328471(0x140),'gaugeInvalidMapping':'Для\x20индикаторной\x20диаграммы\x20требуется\x20одно\x20поле\x20подписи\x20и\x20ровно\x20одно\x20поле\x20значения.','gaugeInvalidConfig':_0x328471(0x141),'chordEmptyTips':'Для\x20хордовой\x20диаграммы\x20требуется\x20хотя\x20бы\x20одна\x20связь\x20с\x20положительным\x20весом\x20между\x20двумя\x20разными\x20узлами.','chordInvalidMapping':_0x328471(0x149),'chordInvalidConfig':_0x328471(0x15e),'chordCount':_0x328471(0x143),'chordAssociatedValue':_0x328471(0x150)}};}));function _0x1eb7(){var _0x4d0f9c=['function','10GuFJiq','Минимум','Накопительный\x20процент','Первый\x20квартиль','Промежуточный\x20итог','Для\x20индикаторной\x20диаграммы\x20требуется\x20хотя\x20бы\x20одно\x20конечное\x20числовое\x20значение.','Конфигурация\x20индикаторной\x20диаграммы\x20недопустима.\x20Проверьте\x20шкалу,\x20диапазоны,\x20пропорции\x20и\x20размеры.','Категория\x20{0}','Количество\x20отношений','5237992gGIyAF','Слово','Пусто','8974670pcxaTi','Закрытие','Для\x20хордовой\x20диаграммы\x20требуются\x20разные\x20поля\x20источника\x20и\x20назначения,\x20а\x20также\x20необязательное\x20отдельное\x20поле\x20значения.','2831412cwFcxW','2985mQywcp','21YHUlYd','Источником\x20данных\x20для\x20графика\x20взаимоотношений\x20является\x20матрица\x20сопутствующих\x20слов\x20с\x20дополнительным\x20столбцом\x20типа\x20во\x20втором\x20столбце.','amd','Для\x20кольцевой\x20иерархической\x20диаграммы\x20требуется\x20хотя\x20бы\x20одно\x20поле\x20иерархии\x20и\x20одно\x20числовое\x20поле\x20значений.','Связанное\x20значение','Для\x20древовидной\x20карты\x20требуется\x20хотя\x20бы\x20одно\x20поле\x20иерархии\x20и\x20одно\x20числовое\x20поле\x20значений.','Собственное\x20значение','5593379YowYGq','Отрицательное','Диаграмма\x20пузырей\x20требует\x20как\x20минимум\x202\x20столбца:\x20ось\x20X,\x20ось\x20Y','exports','Диаграмма\x20Санки\x20не\x20может\x20содержать\x20циклические\x20данные','2550PClQUR','496854GmLNXz','Положительное','Серия\x20{0}','9TRmzjI','UniverProEngineChartRuRU','Конфигурация\x20хордовой\x20диаграммы\x20недопустима.\x20Проверьте\x20углы,\x20радиусы,\x20непрозрачность\x20и\x20размеры.','3065934GlFlnd','Частота','object','Дочерние\x20элементы','Максимум'];_0x1eb7=function(){return _0x4d0f9c;};return _0x1eb7();}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function _0x4112(){var _0x1c5ce4=['Sankeyho\x20graf\x20nemôže\x20obsahovať\x20cyklické\x20údaje','72866oHWQWZ','amd','44OzNHya','function','140aJYuZn','2362960uHgerT','Ukazovateľový\x20graf\x20vyžaduje\x20aspoň\x20jednu\x20konečnú\x20číselnú\x20hodnotu.','exports','Séria\x20{0}','Tretí\x20kvartil','Iné','6349497VUMaKm','Kumulatívne\x20percento','Medzisúčet','Zdrojové\x20dáta\x20pre\x20graf\x20vzťahov\x20sú\x20ko-slovná\x20matica\x20s\x20dodatočným\x20typovým\x20stĺpcom\x20v\x20druhom\x20stĺpci','Ukazovateľový\x20graf\x20vyžaduje\x20jedno\x20pole\x20menovky\x20a\x20presne\x20jedno\x20pole\x20hodnoty.','15291160TYxaUy','(Prázdne)','Maximum','Bublinový\x20graf\x20vyžaduje\x20aspoň\x202\x20stĺpce:\x20os\x20X,\x20os\x20Y','Konfigurácia\x20ukazovateľového\x20grafu\x20je\x20neplatná.\x20Skontrolujte\x20mierku,\x20rozsahy,\x20pomery\x20a\x20veľkosti.','Počet\x20vzťahov','3366774JWANFU','Kategória\x20{0}','object','5134578xrhoin','Priradená\x20hodnota','120408dGhonp','Pozitívne','Slovo','Položky','Pridajte\x20sériu\x20a\x20začnite\x20vizualizovať\x20údaje','8zKeXgl','Vlastná\x20hodnota','Konfigurácia\x20chordového\x20diagramu\x20je\x20neplatná.\x20Skontrolujte\x20uhly,\x20polomery,\x20nepriehľadnosť\x20a\x20veľkosti.','Chordový\x20diagram\x20vyžaduje\x20rozdielne\x20polia\x20Zdroj\x20a\x20Cieľ\x20a\x20voliteľné\x20samostatné\x20pole\x20Hodnota.','Frekvencia','Podradené\x20prvky','Minimum'];_0x4112=function(){return _0x1c5ce4;};return _0x4112();}function _0x4b8b(_0x262966,_0x5db0fa){_0x262966=_0x262966-0x197;var _0x41129e=_0x4112();var _0x4b8b31=_0x41129e[_0x262966];return _0x4b8b31;}(function(_0x13c142,_0x35e353){var _0x59cbf4=_0x4b8b,_0x155a9e=_0x13c142();while(!![]){try{var _0x109c08=-parseInt(_0x59cbf4(0x1a9))/0x1*(-parseInt(_0x59cbf4(0x1a7))/0x2)+-parseInt(_0x59cbf4(0x19a))/0x3*(parseInt(_0x59cbf4(0x1ab))/0x4)+-parseInt(_0x59cbf4(0x1ac))/0x5+parseInt(_0x59cbf4(0x198))/0x6+-parseInt(_0x59cbf4(0x1b2))/0x7+parseInt(_0x59cbf4(0x19f))/0x8*(-parseInt(_0x59cbf4(0x1bd))/0x9)+parseInt(_0x59cbf4(0x1b7))/0xa;if(_0x109c08===_0x35e353)break;else _0x155a9e['push'](_0x155a9e['shift']());}catch(_0x932748){_0x155a9e['push'](_0x155a9e['shift']());}}}(_0x4112,0xca7ee),function(_0x23281f,_0x4eb7ab){var _0x360e8d=_0x4b8b;typeof exports==_0x360e8d(0x197)&&typeof module<'u'?module[_0x360e8d(0x1ae)]=_0x4eb7ab():typeof define==_0x360e8d(0x1aa)&&define[_0x360e8d(0x1a8)]?define([],_0x4eb7ab):(_0x23281f=typeof globalThis<'u'?globalThis:_0x23281f||self,_0x23281f['UniverProEngineChartSkSK']=_0x4eb7ab());}(this,function(){var _0x19fe73=_0x4b8b;return{'engine-chart':{'seriesDefaultName':_0x19fe73(0x1af),'categoryDefaultName':_0x19fe73(0x1be),'blank':_0x19fe73(0x1b8),'boxplotMin':'Minimum','boxplotQ1':'Prvý\x20kvartil','boxplotMedian':'Medián','boxplotQ3':_0x19fe73(0x1b0),'boxplotMax':_0x19fe73(0x1b9),'bubbleEmptyTips':_0x19fe73(0x1ba),'cloudWord':_0x19fe73(0x19c),'cloudFrequency':_0x19fe73(0x1a3),'msgEmptyTips':_0x19fe73(0x19e),'msgSankeyCircularTips':_0x19fe73(0x1a6),'paretoLineName':_0x19fe73(0x1b3),'pieAggregateOther':_0x19fe73(0x1b1),'pieAggregateMembers':_0x19fe73(0x19d),'relationEmptyTips':_0x19fe73(0x1b5),'waterfallPositive':_0x19fe73(0x19b),'waterfallNegative':'Negatívne','waterfallSubtotal':_0x19fe73(0x1b4),'candlestickSeries':'Rad\x20OHLC','candlestickCategory':'Kategória','candlestickOpen':'Otvorenie','candlestickHigh':_0x19fe73(0x1b9),'candlestickLow':_0x19fe73(0x1a5),'candlestickClose':'Zatvorenie','histogramFrequency':'Frekvencia','treemapEmptyTips':'Stromová\x20mapa\x20vyžaduje\x20aspoň\x20jedno\x20pole\x20hierarchie\x20a\x20jedno\x20číselné\x20pole\x20hodnoty.','treemapOwnValue':_0x19fe73(0x1a0),'treemapChildren':'Podradené\x20prvky','sunburstEmptyTips':'Lúčový\x20hierarchický\x20graf\x20vyžaduje\x20aspoň\x20jedno\x20pole\x20hierarchie\x20a\x20jedno\x20číselné\x20pole\x20hodnoty.','sunburstOwnValue':'Vlastná\x20hodnota','sunburstChildren':_0x19fe73(0x1a4),'gaugeEmptyTips':_0x19fe73(0x1ad),'gaugeInvalidMapping':_0x19fe73(0x1b6),'gaugeInvalidConfig':_0x19fe73(0x1bb),'chordEmptyTips':'Chordový\x20diagram\x20vyžaduje\x20aspoň\x20jeden\x20vzťah\x20s\x20kladnou\x20váhou\x20medzi\x20dvoma\x20rôznymi\x20uzlami.','chordInvalidMapping':_0x19fe73(0x1a2),'chordInvalidConfig':_0x19fe73(0x1a1),'chordCount':_0x19fe73(0x1bc),'chordAssociatedValue':_0x19fe73(0x199)}};}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function _0x2354(_0x387bee,_0x24253a){_0x387bee=_0x387bee-0x1c8;var _0x213dd5=_0x213d();var _0x23544c=_0x213dd5[_0x387bee];return _0x23544c;}(function(_0x532223,_0x25c437){var _0x18ba57=_0x2354,_0x104f3f=_0x532223();while(!![]){try{var _0x339911=parseInt(_0x18ba57(0x1d0))/0x1+parseInt(_0x18ba57(0x1d7))/0x2+parseInt(_0x18ba57(0x1dc))/0x3*(parseInt(_0x18ba57(0x1eb))/0x4)+-parseInt(_0x18ba57(0x1e2))/0x5*(-parseInt(_0x18ba57(0x1de))/0x6)+-parseInt(_0x18ba57(0x1e8))/0x7*(parseInt(_0x18ba57(0x1c9))/0x8)+-parseInt(_0x18ba57(0x1c8))/0x9+-parseInt(_0x18ba57(0x1dd))/0xa;if(_0x339911===_0x25c437)break;else _0x104f3f['push'](_0x104f3f['shift']());}catch(_0x1d1306){_0x104f3f['push'](_0x104f3f['shift']());}}}(_0x213d,0x90fb2),function(_0x3c7be5,_0x2aed7f){var _0x103ea0=_0x2354;typeof exports==_0x103ea0(0x1ef)&&typeof module<'u'?module[_0x103ea0(0x1e9)]=_0x2aed7f():typeof define==_0x103ea0(0x1e3)&&define['amd']?define([],_0x2aed7f):(_0x3c7be5=typeof globalThis<'u'?globalThis:_0x3c7be5||self,_0x3c7be5[_0x103ea0(0x1ee)]=_0x2aed7f());}(this,function(){var _0x342a9f=_0x2354;return{'engine-chart':{'seriesDefaultName':_0x342a9f(0x1d5),'categoryDefaultName':_0x342a9f(0x1cc),'blank':'(Trống)','boxplotMin':_0x342a9f(0x1f2),'boxplotQ1':_0x342a9f(0x1ea),'boxplotMedian':_0x342a9f(0x1d6),'boxplotQ3':_0x342a9f(0x1d8),'boxplotMax':'Giá\x20trị\x20lớn\x20nhất','bubbleEmptyTips':_0x342a9f(0x1e4),'cloudWord':'Từ','cloudFrequency':_0x342a9f(0x1db),'msgEmptyTips':_0x342a9f(0x1df),'msgSankeyCircularTips':_0x342a9f(0x1d2),'paretoLineName':_0x342a9f(0x1d1),'pieAggregateOther':_0x342a9f(0x1f0),'pieAggregateMembers':_0x342a9f(0x1ed),'relationEmptyTips':_0x342a9f(0x1e5),'waterfallPositive':'Giá\x20trị\x20dương','waterfallNegative':_0x342a9f(0x1e6),'waterfallSubtotal':_0x342a9f(0x1f3),'candlestickSeries':_0x342a9f(0x1e0),'candlestickCategory':_0x342a9f(0x1cd),'candlestickOpen':_0x342a9f(0x1ca),'candlestickHigh':_0x342a9f(0x1f1),'candlestickLow':_0x342a9f(0x1da),'candlestickClose':_0x342a9f(0x1e7),'histogramFrequency':_0x342a9f(0x1db),'treemapEmptyTips':'Biểu\x20đồ\x20cây\x20cần\x20ít\x20nhất\x20một\x20trường\x20phân\x20cấp\x20và\x20một\x20trường\x20giá\x20trị\x20số.','treemapOwnValue':_0x342a9f(0x1d3),'treemapChildren':_0x342a9f(0x1d4),'sunburstEmptyTips':_0x342a9f(0x1e1),'sunburstOwnValue':'Giá\x20trị\x20riêng','sunburstChildren':_0x342a9f(0x1d4),'gaugeEmptyTips':_0x342a9f(0x1d9),'gaugeInvalidMapping':'Biểu\x20đồ\x20đồng\x20hồ\x20cần\x20một\x20trường\x20nhãn\x20và\x20đúng\x20một\x20trường\x20giá\x20trị.','gaugeInvalidConfig':_0x342a9f(0x1f4),'chordEmptyTips':_0x342a9f(0x1cb),'chordInvalidMapping':'Biểu\x20đồ\x20dây\x20cung\x20cần\x20các\x20trường\x20Nguồn\x20và\x20Đích\x20khác\x20nhau\x20cùng\x20một\x20trường\x20Giá\x20trị\x20khác\x20biệt\x20không\x20bắt\x20buộc.','chordInvalidConfig':_0x342a9f(0x1cf),'chordCount':_0x342a9f(0x1ce),'chordAssociatedValue':_0x342a9f(0x1ec)}};}));function _0x213d(){var _0x28925e=['Phần\x20tử\x20con','Loạt\x20{0}','Trung\x20vị','1927690CzZosP','Phần\x20tư\x20thứ\x20ba','Biểu\x20đồ\x20đồng\x20hồ\x20cần\x20ít\x20nhất\x20một\x20giá\x20trị\x20số\x20hữu\x20hạn.','Giá\x20thấp\x20nhất','Tần\x20suất','2361075Uuesxl','14664430tcCwRM','15762IPrKhM','Không\x20có\x20dữ\x20liệu\x20để\x20hiển\x20thị.','Chuỗi\x20OHLC','Biểu\x20đồ\x20sunburst\x20cần\x20ít\x20nhất\x20một\x20trường\x20phân\x20cấp\x20và\x20một\x20trường\x20giá\x20trị\x20số.','1080BlfCXT','function','Biểu\x20đồ\x20bong\x20bóng\x20yêu\x20cầu\x20ít\x20nhất\x202\x20cột:\x20trục\x20X,\x20trục\x20Y','Nguồn\x20dữ\x20liệu\x20cho\x20biểu\x20đồ\x20quan\x20hệ\x20là\x20ma\x20trận\x20đồng\x20từ\x20với\x20cột\x20loại\x20bổ\x20sung\x20ở\x20cột\x20thứ\x20hai','Giá\x20trị\x20âm','Giá\x20đóng\x20cửa','3843LcPpRX','exports','Phần\x20tư\x20thứ\x20nhất','4cCnJRp','Giá\x20trị\x20liên\x20kết','Thành\x20phần','UniverProEngineChartViVN','object','Khác','Giá\x20cao\x20nhất','Giá\x20trị\x20nhỏ\x20nhất','Tổng\x20phụ','Cấu\x20hình\x20biểu\x20đồ\x20đồng\x20hồ\x20không\x20hợp\x20lệ.\x20Hãy\x20kiểm\x20tra\x20thang\x20đo,\x20phạm\x20vi,\x20tỷ\x20lệ\x20và\x20kích\x20thước.','8150670avfQYF','5904CLCYQK','Giá\x20mở\x20cửa','Biểu\x20đồ\x20dây\x20cung\x20cần\x20ít\x20nhất\x20một\x20quan\x20hệ\x20có\x20trọng\x20số\x20dương\x20giữa\x20hai\x20nút\x20khác\x20nhau.','Danh\x20mục\x20{0}','Danh\x20mục','Số\x20lượng\x20mối\x20quan\x20hệ','Cấu\x20hình\x20biểu\x20đồ\x20dây\x20cung\x20không\x20hợp\x20lệ.\x20Hãy\x20kiểm\x20tra\x20góc,\x20bán\x20kính,\x20độ\x20mờ\x20và\x20kích\x20thước.','1052775wNgtYG','Tỷ\x20lệ\x20tích\x20lũy','Biểu\x20đồ\x20Sankey\x20không\x20thể\x20chứa\x20dữ\x20liệu\x20vòng\x20lặp','Giá\x20trị\x20riêng'];_0x213d=function(){return _0x28925e;};return _0x213d();}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function _0x4e6c(_0x7fcbdc,_0x196017){_0x7fcbdc=_0x7fcbdc-0x139;var _0x3b990a=_0x3b99();var _0x4e6c77=_0x3b990a[_0x7fcbdc];return _0x4e6c77;}function _0x3b99(){var _0x3ac34e=['弦图需要不同的来源字段和目标字段,并可选一个与二者不同的数值字段。','关系图数据源为额外添加类型列在第二列的共词矩阵','关系计数','桑基图不能包含循环数据','function','623486Tibija','系列\x20{0}','8ubGZWL','最大值','720136LguqUY','矩形树图至少需要一个层级字段和一个数值字段。','1yQtlOc','371511SglXmw','247910Vqabuc','弦图配置无效,请检查角度、半径、不透明度和尺寸。','成员数','(空)','类别\x20{0}','最小值','2351865IIVnsY','旭日图至少需要一个层级字段和一个数值字段。','仪表图配置无效,请检查刻度范围、分段区间、比例和尺寸。','中位数','object','amd','弦图至少需要两个不同节点之间的一条正权重关系。','累积占比','3691176GaJxXQ','84aSsoDM','exports','2749980CqOIIm','自身值'];_0x3b99=function(){return _0x3ac34e;};return _0x3b99();}(function(_0x200748,_0x1014a9){var _0x674f2a=_0x4e6c,_0x5793f6=_0x200748();while(!![]){try{var _0x56e6f7=-parseInt(_0x674f2a(0x140))/0x1*(parseInt(_0x674f2a(0x13a))/0x2)+-parseInt(_0x674f2a(0x148))/0x3+parseInt(_0x674f2a(0x13c))/0x4*(-parseInt(_0x674f2a(0x142))/0x5)+parseInt(_0x674f2a(0x150))/0x6+-parseInt(_0x674f2a(0x151))/0x7*(-parseInt(_0x674f2a(0x13e))/0x8)+parseInt(_0x674f2a(0x141))/0x9+parseInt(_0x674f2a(0x153))/0xa;if(_0x56e6f7===_0x1014a9)break;else _0x5793f6['push'](_0x5793f6['shift']());}catch(_0x334661){_0x5793f6['push'](_0x5793f6['shift']());}}}(_0x3b99,0xc76af),function(_0x583569,_0x4dc777){var _0x4b86ca=_0x4e6c;typeof exports==_0x4b86ca(0x14c)&&typeof module<'u'?module[_0x4b86ca(0x152)]=_0x4dc777():typeof define==_0x4b86ca(0x139)&&define[_0x4b86ca(0x14d)]?define([],_0x4dc777):(_0x583569=typeof globalThis<'u'?globalThis:_0x583569||self,_0x583569['UniverProEngineChartZhCN']=_0x4dc777());}(this,function(){var _0x416418=_0x4e6c;return{'engine-chart':{'seriesDefaultName':_0x416418(0x13b),'categoryDefaultName':_0x416418(0x146),'blank':_0x416418(0x145),'boxplotMin':_0x416418(0x147),'boxplotQ1':'第一四分位数','boxplotMedian':_0x416418(0x14b),'boxplotQ3':'第三四分位数','boxplotMax':_0x416418(0x13d),'bubbleEmptyTips':'气泡图至少需要2列,X轴、Y轴。','cloudWord':'词语','cloudFrequency':'频率','msgEmptyTips':'请先添加系列开始数据可视化','msgSankeyCircularTips':_0x416418(0x158),'paretoLineName':_0x416418(0x14f),'pieAggregateOther':'其他','pieAggregateMembers':_0x416418(0x144),'relationEmptyTips':_0x416418(0x156),'waterfallPositive':'正值','waterfallNegative':'负值','waterfallSubtotal':'小计','candlestickSeries':'OHLC\x20系列','candlestickCategory':'类别','candlestickOpen':'开盘','candlestickHigh':'最高','candlestickLow':'最低','candlestickClose':'收盘','histogramFrequency':'频数','treemapEmptyTips':_0x416418(0x13f),'treemapOwnValue':_0x416418(0x154),'treemapChildren':'子项','sunburstEmptyTips':_0x416418(0x149),'sunburstOwnValue':_0x416418(0x154),'sunburstChildren':'子项','gaugeEmptyTips':'仪表图至少需要一个有限数值。','gaugeInvalidMapping':'仪表图需要一个标签字段且只能有一个数值字段。','gaugeInvalidConfig':_0x416418(0x14a),'chordEmptyTips':_0x416418(0x14e),'chordInvalidMapping':_0x416418(0x155),'chordInvalidConfig':_0x416418(0x143),'chordCount':_0x416418(0x157),'chordAssociatedValue':'关联值'}};}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function _0x1bc1(){var _0x58912d=['5KNDvSw','開盤價','59442LMFeww','關係數','關聯值','24IcDUYR','氣泡圖至少需要2欄,X軸、Y軸。','系列\x20{0}','77GjHFAf','最小值','關係圖資料來源為額外新增類型欄在第二欄的共詞矩陣','請先添加系列開始數據可視化','UniverProEngineChartZhHK','儀表圖至少需要一個有限數值。','第一四分位數','330861IGqNZF','弦圖至少需要兩個不同節點之間的一條正權重關係。','15471dMMIBt','amd','儀表圖需要一個標籤欄位,而且只能有一個數值欄位。','exports','最低價','最高價','類別\x20{0}','6461133Lmftyo','中位數','第三四分位數','自身值','弦圖設定無效,請檢查角度、半徑、不透明度和尺寸。','3845238DhYhMl','3177890UlrdHV','最大值','373763Bsidqe','function','object','累積占比','4272yUvHvi'];_0x1bc1=function(){return _0x58912d;};return _0x1bc1();}function _0x1175(_0x32a093,_0xf7982e){_0x32a093=_0x32a093-0xbd;var _0x1bc1e6=_0x1bc1();var _0x11750b=_0x1bc1e6[_0x32a093];return _0x11750b;}(function(_0x33b01f,_0x553476){var _0x49aabb=_0x1175,_0x1080fd=_0x33b01f();while(!![]){try{var _0x961985=parseInt(_0x49aabb(0xd0))/0x1+-parseInt(_0x49aabb(0xd7))/0x2+-parseInt(_0x49aabb(0xbf))/0x3*(parseInt(_0x49aabb(0xda))/0x4)+parseInt(_0x49aabb(0xd5))/0x5*(parseInt(_0x49aabb(0xcd))/0x6)+-parseInt(_0x49aabb(0xc8))/0x7+-parseInt(_0x49aabb(0xd4))/0x8*(parseInt(_0x49aabb(0xc1))/0x9)+-parseInt(_0x49aabb(0xce))/0xa*(-parseInt(_0x49aabb(0xdd))/0xb);if(_0x961985===_0x553476)break;else _0x1080fd['push'](_0x1080fd['shift']());}catch(_0x3f56f2){_0x1080fd['push'](_0x1080fd['shift']());}}}(_0x1bc1,0xac8bf),function(_0x1deb89,_0x5f3806){var _0x4a37d4=_0x1175;typeof exports==_0x4a37d4(0xd2)&&typeof module<'u'?module[_0x4a37d4(0xc4)]=_0x5f3806():typeof define==_0x4a37d4(0xd1)&&define[_0x4a37d4(0xc2)]?define([],_0x5f3806):(_0x1deb89=typeof globalThis<'u'?globalThis:_0x1deb89||self,_0x1deb89[_0x4a37d4(0xe1)]=_0x5f3806());}(this,function(){var _0x359be7=_0x1175;return{'engine-chart':{'seriesDefaultName':_0x359be7(0xdc),'categoryDefaultName':_0x359be7(0xc7),'blank':'(空)','boxplotMin':_0x359be7(0xde),'boxplotQ1':_0x359be7(0xbe),'boxplotMedian':_0x359be7(0xc9),'boxplotQ3':_0x359be7(0xca),'boxplotMax':_0x359be7(0xcf),'bubbleEmptyTips':_0x359be7(0xdb),'cloudWord':'詞','cloudFrequency':'頻率','msgEmptyTips':_0x359be7(0xe0),'msgSankeyCircularTips':'桑基圖不能包含循環數據','paretoLineName':_0x359be7(0xd3),'pieAggregateOther':'其他','pieAggregateMembers':'成員','relationEmptyTips':_0x359be7(0xdf),'waterfallPositive':'正值','waterfallNegative':'負值','waterfallSubtotal':'小計','candlestickSeries':'OHLC\x20數列','candlestickCategory':'類別','candlestickOpen':_0x359be7(0xd6),'candlestickHigh':_0x359be7(0xc6),'candlestickLow':_0x359be7(0xc5),'candlestickClose':'收盤價','histogramFrequency':'頻數','treemapEmptyTips':'矩形樹圖至少需要一個階層欄位和一個數值欄位。','treemapOwnValue':_0x359be7(0xcb),'treemapChildren':'子項','sunburstEmptyTips':'旭日圖至少需要一個階層欄位和一個數值欄位。','sunburstOwnValue':'自身值','sunburstChildren':'子項','gaugeEmptyTips':_0x359be7(0xbd),'gaugeInvalidMapping':_0x359be7(0xc3),'gaugeInvalidConfig':'儀表圖設定無效,請檢查刻度範圍、分段區間、比例和尺寸。','chordEmptyTips':_0x359be7(0xc0),'chordInvalidMapping':'弦圖需要不同的來源與目標欄位,並可選擇一個與兩者不同的數值欄位。','chordInvalidConfig':_0x359be7(0xcc),'chordCount':_0x359be7(0xd8),'chordAssociatedValue':_0x359be7(0xd9)}};}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function _0x5c24(_0x4e0bbe,_0xf80d4f){_0x4e0bbe=_0x4e0bbe-0x10c;var _0x2c2afa=_0x2c2a();var _0x5c2444=_0x2c2afa[_0x4e0bbe];return _0x5c2444;}function _0x2c2a(){var _0x3e5f7e=['儀表圖設定無效,請檢查刻度範圍、分段區間、比例和尺寸。','弦圖至少需要兩個不同節點之間的一條正權重關係。','13amUHum','71964nijcZn','3726730SKuQui','自身值','中位數','UniverProEngineChartZhTW','系列\x20{0}','664AxbOys','4694178QKSaNw','249639mCtNHe','15NZMkhw','function','請先添加系列開始數據可視化','第三四分位數','收盤價','5062974fOPtJo','amd','最小值','關係數','exports','1015172mUdqsh','儀表圖至少需要一個有限數值。','弦圖需要不同的來源與目標欄位,並可選擇一個與兩者不同的數值欄位。','弦圖設定無效,請檢查角度、半徑、不透明度和尺寸。','類別\x20{0}','133582EVvaIG','第一四分位數','關聯值','旭日圖至少需要一個階層欄位和一個數值欄位。'];_0x2c2a=function(){return _0x3e5f7e;};return _0x2c2a();}(function(_0x49ca5d,_0x3ae96b){var _0x31b285=_0x5c24,_0x4ff2c1=_0x49ca5d();while(!![]){try{var _0x207e29=-parseInt(_0x31b285(0x122))/0x1*(parseInt(_0x31b285(0x11c))/0x2)+parseInt(_0x31b285(0x10c))/0x3+-parseInt(_0x31b285(0x117))/0x4*(-parseInt(_0x31b285(0x10d))/0x5)+parseInt(_0x31b285(0x12a))/0x6+parseInt(_0x31b285(0x112))/0x7+-parseInt(_0x31b285(0x129))/0x8*(parseInt(_0x31b285(0x123))/0x9)+-parseInt(_0x31b285(0x124))/0xa;if(_0x207e29===_0x3ae96b)break;else _0x4ff2c1['push'](_0x4ff2c1['shift']());}catch(_0x1cc823){_0x4ff2c1['push'](_0x4ff2c1['shift']());}}}(_0x2c2a,0x6ccad),function(_0x52129f,_0x4df5b5){var _0x284efd=_0x5c24;typeof exports=='object'&&typeof module<'u'?module[_0x284efd(0x116)]=_0x4df5b5():typeof define==_0x284efd(0x10e)&&define[_0x284efd(0x113)]?define([],_0x4df5b5):(_0x52129f=typeof globalThis<'u'?globalThis:_0x52129f||self,_0x52129f[_0x284efd(0x127)]=_0x4df5b5());}(this,function(){var _0x5d26d8=_0x5c24;return{'engine-chart':{'seriesDefaultName':_0x5d26d8(0x128),'categoryDefaultName':_0x5d26d8(0x11b),'blank':'(空)','boxplotMin':_0x5d26d8(0x114),'boxplotQ1':_0x5d26d8(0x11d),'boxplotMedian':_0x5d26d8(0x126),'boxplotQ3':_0x5d26d8(0x110),'boxplotMax':'最大值','bubbleEmptyTips':'氣泡圖至少需要2欄,X軸、Y軸。','cloudWord':'詞','cloudFrequency':'頻率','msgEmptyTips':_0x5d26d8(0x10f),'msgSankeyCircularTips':'桑基圖不能包含循環數據','paretoLineName':'累積占比','pieAggregateOther':'其他','pieAggregateMembers':'成員','relationEmptyTips':'關係圖資料來源為額外新增類型欄在第二欄的共詞矩陣','waterfallPositive':'正值','waterfallNegative':'負值','waterfallSubtotal':'小計','candlestickSeries':'OHLC\x20數列','candlestickCategory':'類別','candlestickOpen':'開盤價','candlestickHigh':'最高價','candlestickLow':'最低價','candlestickClose':_0x5d26d8(0x111),'histogramFrequency':'頻數','treemapEmptyTips':'矩形樹圖至少需要一個階層欄位和一個數值欄位。','treemapOwnValue':_0x5d26d8(0x125),'treemapChildren':'子項','sunburstEmptyTips':_0x5d26d8(0x11f),'sunburstOwnValue':_0x5d26d8(0x125),'sunburstChildren':'子項','gaugeEmptyTips':_0x5d26d8(0x118),'gaugeInvalidMapping':'儀表圖需要一個標籤欄位,而且只能有一個數值欄位。','gaugeInvalidConfig':_0x5d26d8(0x120),'chordEmptyTips':_0x5d26d8(0x121),'chordInvalidMapping':_0x5d26d8(0x119),'chordInvalidConfig':_0x5d26d8(0x11a),'chordCount':_0x5d26d8(0x115),'chordAssociatedValue':_0x5d26d8(0x11e)}};}));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs-pro/engine-chart",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-beta.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Chart data model and rendering utilities for Univer Pro.",
|
|
6
6
|
"author": "DreamNum Co., Ltd. <developer@univer.ai>",
|
|
@@ -34,6 +34,11 @@
|
|
|
34
34
|
"require": "./lib/cjs/*",
|
|
35
35
|
"types": "./lib/types/index.d.ts"
|
|
36
36
|
},
|
|
37
|
+
"./locale/*": {
|
|
38
|
+
"import": "./lib/es/locale/*.js",
|
|
39
|
+
"require": "./lib/cjs/locale/*.js",
|
|
40
|
+
"types": "./lib/types/locale/*.d.ts"
|
|
41
|
+
},
|
|
37
42
|
"./facade": {
|
|
38
43
|
"import": "./lib/es/facade.js",
|
|
39
44
|
"require": "./lib/cjs/facade.js",
|
|
@@ -61,15 +66,17 @@
|
|
|
61
66
|
"rxjs": ">=7.0.0"
|
|
62
67
|
},
|
|
63
68
|
"dependencies": {
|
|
64
|
-
"@univerjs/core": "1.0.0-
|
|
65
|
-
"@univerjs/engine-render": "1.0.0-
|
|
69
|
+
"@univerjs/core": "1.0.0-beta.1",
|
|
70
|
+
"@univerjs/engine-render": "1.0.0-beta.1",
|
|
71
|
+
"@univerjs-pro/embed": "1.0.0-beta.1",
|
|
72
|
+
"@univerjs-pro/license": "1.0.0-beta.1"
|
|
66
73
|
},
|
|
67
74
|
"devDependencies": {
|
|
68
75
|
"echarts": "6.1.0",
|
|
69
76
|
"rxjs": "7.8.2",
|
|
70
77
|
"typescript": "^6.0.3",
|
|
71
78
|
"vitest": "^4.1.10",
|
|
72
|
-
"@univerjs-infra/shared": "1.0.0-
|
|
79
|
+
"@univerjs-infra/shared": "1.0.0-beta.1"
|
|
73
80
|
},
|
|
74
81
|
"scripts": {
|
|
75
82
|
"test": "vitest run",
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { ChartTypeBits } from '../enum';
|
|
2
|
-
export declare const CANDLESTICK_INLINE_COLUMN_COUNT = 5;
|
|
3
|
-
/** Enforces the fixed Category/Open/High/Low/Close inline-host contract. */
|
|
4
|
-
export declare function normalizeCandlestickInlineTable<T>(chartType: ChartTypeBits, values: T[][]): T[][] | undefined;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
export type { IChartAxisPointerSpec, IChartRelationForceSpec } from '../chart-types';
|
|
2
|
-
export { ChartWaterfallStyleTarget } from '../chart-types';
|
|
3
|
-
export * from './aggregation';
|
|
4
|
-
export * from './appearance';
|
|
5
|
-
export * from './area';
|
|
6
|
-
export * from './auto-gradient-fill';
|
|
7
|
-
export * from './axes';
|
|
8
|
-
export * from './axis-pointer';
|
|
9
|
-
export * from './bar';
|
|
10
|
-
export * from './candlestick';
|
|
11
|
-
export * from './cartesian-series';
|
|
12
|
-
export type { IChartConfigOperation } from './chart-config-operation';
|
|
13
|
-
export * from './combination';
|
|
14
|
-
export * from './funnel';
|
|
15
|
-
export * from './heatmap';
|
|
16
|
-
export * from './histogram';
|
|
17
|
-
export * from './invalid-value';
|
|
18
|
-
export * from './legend';
|
|
19
|
-
export * from './line';
|
|
20
|
-
export * from './mapping';
|
|
21
|
-
export * from './mark-lines';
|
|
22
|
-
export * from './palette';
|
|
23
|
-
export * from './pareto';
|
|
24
|
-
export * from './pie';
|
|
25
|
-
export * from './point-mapping';
|
|
26
|
-
export * from './radar';
|
|
27
|
-
export * from './relation';
|
|
28
|
-
export * from './subtitle';
|
|
29
|
-
export * from './theme';
|
|
30
|
-
export * from './title';
|
|
31
|
-
export * from './treemap';
|
|
32
|
-
export * from './trendline';
|
|
33
|
-
export * from './waterfall';
|
|
34
|
-
export * from './word-cloud';
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
export type { IChartCandlestickMappingSpec, IChartCandlestickSpec, IChartCandlestickStateStyleSpec, IChartHistogramBinningSpec, IChartHistogramDataSpec, IChartHistogramSpec, IChartHistogramStyleSpec, IChartTreemapLabelSpec, IChartTreemapSpec, } from '../types';
|
|
2
|
-
export { ChartBuilder } from './chart-builder';
|
|
3
|
-
export type { IChartBuilderAdapter } from './chart-builder-adapter';
|
|
4
|
-
export { CHART_LINEAR_GRADIENT_TYPE, chartLinearGradient } from './chart-color';
|
|
5
|
-
export type { ChartColor, ChartLinearGradientInput, IChartGradientPoint, IChartGradientStop, IChartLinearGradient, } from './chart-color';
|
|
6
|
-
export type { ChartDescription } from './chart-description';
|
|
7
|
-
export { createChartStarterRows } from './chart-starter-data';
|
|
8
|
-
export * from './chart-types';
|
|
9
|
-
export * from './configuration';
|
|
10
|
-
export { toChartModelConfig, toCompleteChartModelConfig } from './conversion/chart-config-converter';
|
|
11
|
-
export { canonicalizeChartContext } from './conversion/chart-context-patch';
|
|
12
|
-
export { chartBitsToType, chartTypeToBits } from './conversion/chart-type-converter';
|
|
13
|
-
export { describeChartModel, resolveChartDescriptionMetadata } from './conversion/describe-chart-model';
|
|
14
|
-
export { resolveChartModelData } from './conversion/resolve-chart-model-data';
|
|
15
|
-
export { DetachedChartBuilderAdapter } from './detached-chart-builder-adapter';
|
|
16
|
-
export type { IInlineChartBuilderAdapter, IInlineChartHostPatch } from './internal/host-builder-runtime';
|
|
17
|
-
export { InlineChartBuilder, resolveInlineChartDataSet } from './internal/host-builder-runtime';
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
import type { IUniverDataSet } from '../../types';
|
|
2
|
-
/** Builds a detached data set from raw inline values and disposes the temporary source. */
|
|
3
|
-
export declare function resolveInlineChartDataSet<TCell>(values: TCell[][], buildDataSet: (data: TCell[][]) => IUniverDataSet, isRowDirection?: boolean): IUniverDataSet;
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
export { FAreaChartBuilder } from './f-area-chart-builder';
|
|
2
|
-
export { FBoxplotChartBuilder } from './f-boxplot-chart-builder';
|
|
3
|
-
export { FBubbleChartBuilder } from './f-bubble-chart-builder';
|
|
4
|
-
export { FCandlestickChartBuilder } from './f-candlestick-chart-builder';
|
|
5
|
-
export { FCombinationChartBuilder } from './f-combination-chart-builder';
|
|
6
|
-
export { FFunnelChartBuilder } from './f-funnel-chart-builder';
|
|
7
|
-
export { FHeatmapChartBuilder } from './f-heatmap-chart-builder';
|
|
8
|
-
export { FHistogramChartBuilder } from './f-histogram-chart-builder';
|
|
9
|
-
export { FLineChartBuilder } from './f-line-chart-builder';
|
|
10
|
-
export { FParetoChartBuilder } from './f-pareto-chart-builder';
|
|
11
|
-
export { FPieChartBuilder } from './f-pie-chart-builder';
|
|
12
|
-
export { FRadarChartBuilder } from './f-radar-chart-builder';
|
|
13
|
-
export { FRelationChartBuilder } from './f-relation-chart-builder';
|
|
14
|
-
export { FScatterChartBuilder } from './f-scatter-chart-builder';
|
|
15
|
-
export { FTreemapChartBuilder } from './f-treemap-chart-builder';
|
|
16
|
-
export { FWaterfallChartBuilder } from './f-waterfall-chart-builder';
|
|
17
|
-
export { FWordCloudChartBuilder } from './f-word-cloud-chart-builder';
|
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
import type { ChartBuilder, ChartDescription, IChartData, IChartRenderModelImageExportOptions, IChartRenderModelImageExportResult } from '@univerjs-pro/engine-chart';
|
|
2
|
-
import type { DeepReadonly } from '@univerjs/core';
|
|
3
|
-
import type { IChartBuilderFacadeContext, IChartBuilderFacadeContextAccess } from './internal/chart-builder-facade-context';
|
|
4
|
-
export declare abstract class FChartBase<TDescription extends ChartDescription = ChartDescription, TBuilder extends ChartBuilder = ChartBuilder> implements IChartBuilderFacadeContextAccess {
|
|
5
|
-
protected readonly _context: IChartBuilderFacadeContext<TBuilder>;
|
|
6
|
-
protected readonly _builder: TBuilder;
|
|
7
|
-
constructor(_context: IChartBuilderFacadeContext<TBuilder>);
|
|
8
|
-
/**
|
|
9
|
-
* Returns the current id value.
|
|
10
|
-
*
|
|
11
|
-
* This method executes synchronously.
|
|
12
|
-
*
|
|
13
|
-
* @returns The host-owned chart ID.
|
|
14
|
-
* @example
|
|
15
|
-
* ```ts
|
|
16
|
-
* const chart = univerAPI.getActiveWorkbook().getActiveSheet().charts.list()[0];
|
|
17
|
-
* chart.getId();
|
|
18
|
-
* ```
|
|
19
|
-
*/
|
|
20
|
-
getId(): string;
|
|
21
|
-
/**
|
|
22
|
-
* Returns a detached read-only description including pending builder changes.
|
|
23
|
-
*
|
|
24
|
-
* This method executes synchronously.
|
|
25
|
-
*
|
|
26
|
-
* @returns An immutable description including pending builder changes.
|
|
27
|
-
* @example
|
|
28
|
-
* ```ts
|
|
29
|
-
* const chart = univerAPI.getActiveWorkbook().getActiveSheet().charts.list()[0];
|
|
30
|
-
* chart.describe();
|
|
31
|
-
* ```
|
|
32
|
-
*/
|
|
33
|
-
describe(): DeepReadonly<TDescription>;
|
|
34
|
-
/**
|
|
35
|
-
* Resolves fresh, read-only chart data from the latest host data and pending builder changes.
|
|
36
|
-
*
|
|
37
|
-
* This method executes synchronously and does not commit pending changes. It is available
|
|
38
|
-
* only after the builder is hosted; for a newly created builder, call it on the value returned
|
|
39
|
-
* by `charts.insert(builder)`.
|
|
40
|
-
*
|
|
41
|
-
* @returns Fresh immutable category and series data for the effective chart configuration.
|
|
42
|
-
* @throws If the builder has not been inserted into a host.
|
|
43
|
-
* @example
|
|
44
|
-
* ```ts
|
|
45
|
-
* const fWorkbook = univerAPI.getActiveWorkbook();
|
|
46
|
-
* const fWorksheet = fWorkbook.getSheetByName('Sheet1');
|
|
47
|
-
* if (!fWorksheet) return;
|
|
48
|
-
* const chart = fWorksheet.charts.list()[0];
|
|
49
|
-
* chart.setValueFields([1, 2]);
|
|
50
|
-
* const data = chart.resolveData();
|
|
51
|
-
* console.log(data.series);
|
|
52
|
-
* ```
|
|
53
|
-
*/
|
|
54
|
-
resolveData(): DeepReadonly<IChartData>;
|
|
55
|
-
/**
|
|
56
|
-
* Commits all pending builder changes synchronously.
|
|
57
|
-
*
|
|
58
|
-
* This method executes synchronously.
|
|
59
|
-
*
|
|
60
|
-
* @returns This builder for chaining.
|
|
61
|
-
* @example
|
|
62
|
-
* ```ts
|
|
63
|
-
* const chart = univerAPI.getActiveWorkbook().getActiveSheet().charts.list()[0];
|
|
64
|
-
* chart.commit();
|
|
65
|
-
* ```
|
|
66
|
-
*/
|
|
67
|
-
commit(): this;
|
|
68
|
-
/**
|
|
69
|
-
* Renders the current chart as an image.
|
|
70
|
-
*
|
|
71
|
-
* This method completes asynchronously.
|
|
72
|
-
*
|
|
73
|
-
* @param options The image export options.
|
|
74
|
-
* @returns A promise resolving to the exported image, or null when unavailable.
|
|
75
|
-
* @example
|
|
76
|
-
* ```ts
|
|
77
|
-
* const chart = univerAPI.getActiveWorkbook().getActiveSheet().charts.list()[0];
|
|
78
|
-
* const image = await chart.exportImage({ pixelRatio: 2 });
|
|
79
|
-
* ```
|
|
80
|
-
*/
|
|
81
|
-
exportImage(options?: IChartRenderModelImageExportOptions): Promise<IChartRenderModelImageExportResult | null>;
|
|
82
|
-
}
|
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
import type { IEchartTheme } from '@univerjs-pro/engine-chart';
|
|
2
|
-
export interface IChartBuilderHandle {
|
|
3
|
-
getId(): string;
|
|
4
|
-
}
|
|
5
|
-
export interface IChartBuilderHostTypes {
|
|
6
|
-
Initial: IChartBuilderHandle;
|
|
7
|
-
Any: IChartBuilderHandle;
|
|
8
|
-
}
|
|
9
|
-
export declare abstract class FChartsBase<TTypes extends IChartBuilderHostTypes> {
|
|
10
|
-
/**
|
|
11
|
-
* Creates a detached chart builder.
|
|
12
|
-
* @returns A detached builder that does not mutate the host until inserted.
|
|
13
|
-
* @example
|
|
14
|
-
* ```ts
|
|
15
|
-
* const charts = univerAPI.getActiveWorkbook().getActiveSheet().charts;
|
|
16
|
-
* const chart = charts.create();
|
|
17
|
-
* ```
|
|
18
|
-
*/
|
|
19
|
-
abstract create(): TTypes['Initial'];
|
|
20
|
-
/**
|
|
21
|
-
* Inserts a detached chart builder into the current host.
|
|
22
|
-
* @param builder The detached builder returned by this collection.
|
|
23
|
-
* @returns The inserted builder, preserving its concrete chart and host APIs.
|
|
24
|
-
* @example
|
|
25
|
-
* ```ts
|
|
26
|
-
* const charts = univerAPI.getActiveWorkbook().getActiveSheet().charts;
|
|
27
|
-
* const chart = charts.create().setSource('A1:B6');
|
|
28
|
-
* await charts.insert(chart);
|
|
29
|
-
* ```
|
|
30
|
-
*/
|
|
31
|
-
abstract insert<T extends TTypes['Any']>(builder: T): Promise<T>;
|
|
32
|
-
/**
|
|
33
|
-
* Returns a chart builder by chart ID.
|
|
34
|
-
* @param chartId The host-owned chart ID.
|
|
35
|
-
* @returns The chart builder, or `null` when the ID is not in this host.
|
|
36
|
-
* @example
|
|
37
|
-
* ```ts
|
|
38
|
-
* const chart = univerAPI.getActiveWorkbook().getActiveSheet().charts.get('chart-1');
|
|
39
|
-
* ```
|
|
40
|
-
*/
|
|
41
|
-
abstract get(chartId: string): TTypes['Any'] | null;
|
|
42
|
-
/**
|
|
43
|
-
* Returns all chart builders in the current host.
|
|
44
|
-
* @returns The chart builders currently owned by this host.
|
|
45
|
-
* @example
|
|
46
|
-
* ```ts
|
|
47
|
-
* const charts = univerAPI.getActiveWorkbook().getActiveSheet().charts.list();
|
|
48
|
-
* ```
|
|
49
|
-
*/
|
|
50
|
-
abstract list(): TTypes['Any'][];
|
|
51
|
-
/**
|
|
52
|
-
* Removes a chart by builder or chart ID.
|
|
53
|
-
* @param builderOrId A chart builder from this host or its chart ID.
|
|
54
|
-
* @returns Whether the host command removed the chart.
|
|
55
|
-
* @example
|
|
56
|
-
* ```ts
|
|
57
|
-
* const charts = univerAPI.getActiveWorkbook().getActiveSheet().charts;
|
|
58
|
-
* await charts.remove('chart-1');
|
|
59
|
-
* ```
|
|
60
|
-
*/
|
|
61
|
-
abstract remove(builderOrId: TTypes['Any'] | string): Promise<boolean>;
|
|
62
|
-
/**
|
|
63
|
-
* Registers a chart theme in the shared Univer runtime registry.
|
|
64
|
-
* @param name The stable theme name used by `setTheme`.
|
|
65
|
-
* @param theme The ECharts theme definition.
|
|
66
|
-
* @example
|
|
67
|
-
* ```ts
|
|
68
|
-
* univerAPI.getActiveWorkbook().getActiveSheet().charts.registerTheme('brand', {
|
|
69
|
-
* color: ['#274060', '#1b998b'],
|
|
70
|
-
* });
|
|
71
|
-
* ```
|
|
72
|
-
*/
|
|
73
|
-
abstract registerTheme(name: string, theme: IEchartTheme): void;
|
|
74
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import type { ChartBuilder } from '@univerjs-pro/engine-chart';
|
|
2
|
-
import type { HostComposedChartBuilder } from '../chart-host-builder-types';
|
|
3
|
-
import type { FChartBuilderBase } from '../f-chart-builder-base';
|
|
4
|
-
import type { IChartBuilderFacadeContext } from './chart-builder-facade-context';
|
|
5
|
-
export type EngineChartBuilderConstructor<TBuilder extends FChartBuilderBase = FChartBuilderBase> = new (context: IChartBuilderFacadeContext) => TBuilder;
|
|
6
|
-
export declare class HostBuilderComposer<THostMethods extends object> {
|
|
7
|
-
private readonly _compose;
|
|
8
|
-
private readonly _cache;
|
|
9
|
-
constructor(_compose: (Constructor: EngineChartBuilderConstructor) => EngineChartBuilderConstructor<FChartBuilderBase & THostMethods>);
|
|
10
|
-
compose<TBuilder extends FChartBuilderBase>(Constructor: EngineChartBuilderConstructor<TBuilder>): EngineChartBuilderConstructor<TBuilder & THostMethods>;
|
|
11
|
-
/**
|
|
12
|
-
* Creates a host-composed builder whose Facade context preserves host methods
|
|
13
|
-
* when `setType()` selects another concrete builder class.
|
|
14
|
-
*/
|
|
15
|
-
create<TBuilder extends FChartBuilderBase>(builder: ChartBuilder, Constructor: EngineChartBuilderConstructor<TBuilder>): HostComposedChartBuilder<TBuilder, THostMethods>;
|
|
16
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import type { IChartContext, IChartData, IUniverDataSet } from '../../types';
|
|
2
|
-
import type { IChartLocaleTexts } from '../chart-locale-texts';
|
|
3
|
-
import { ChartTypeBits } from '../../enum';
|
|
4
|
-
export declare enum RelationColumnIndex {
|
|
5
|
-
Source = 0,
|
|
6
|
-
Target = 1,
|
|
7
|
-
Weight = 2
|
|
8
|
-
}
|
|
9
|
-
export declare function buildChartData(dataSource: IUniverDataSet, chartContext: IChartContext, chartType: ChartTypeBits, _isRowDirection: boolean, localeTexts: IChartLocaleTexts): IChartData;
|