@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
|
@@ -1,11 +1,1423 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
import type {
|
|
1
|
+
import type { IChartDataAggregation } from '../../chart-data-aggregation';
|
|
2
|
+
import type { InvalidValueType } from '../../enum';
|
|
3
|
+
import type { ChartModel } from '../../models/chart-model/chart-model';
|
|
4
|
+
import type { IChartLocaleTexts } from '../../models/common/chart-locale-texts';
|
|
5
|
+
import type { IChartContext, IUniverDataSet } from '../../types';
|
|
6
|
+
import type { ChartColor } from '../chart-color';
|
|
3
7
|
import type { ChartPendingConfig, IChartDescription } from '../chart-types';
|
|
8
|
+
import { ChartTypeBits, LabelContentType, LegendPositionEnum, SeriesLabelPosition, TitlePositionEnum } from '../../enum';
|
|
9
|
+
import { PieSecondaryPlotType } from '../chart-types';
|
|
4
10
|
export declare function describeChartModel(chartModel: ChartModel, pending?: ChartPendingConfig, dataSet?: IUniverDataSet): IChartDescription;
|
|
11
|
+
/**
|
|
12
|
+
* Projects one description field without materializing the complete description.
|
|
13
|
+
* Chart editor state uses this seam to avoid repeating unrelated conversions.
|
|
14
|
+
*/
|
|
15
|
+
export declare function projectChartModelDescription<K extends keyof IChartDescription>(chartModel: ChartModel, key: K): IChartDescription[K];
|
|
5
16
|
/** Projects data-free field metadata from an effective source without materializing chart data. */
|
|
6
|
-
export declare function resolveChartDescriptionMetadata(description: IChartDescription, dataSet: IUniverDataSet, localeTexts
|
|
7
|
-
seriesDefaultName: string;
|
|
8
|
-
categoryDefaultName: string;
|
|
9
|
-
}): Pick<IChartDescription, 'series' | 'category'>;
|
|
17
|
+
export declare function resolveChartDescriptionMetadata(description: IChartDescription, dataSet: IUniverDataSet, localeTexts: Pick<IChartLocaleTexts, 'seriesDefaultName' | 'categoryDefaultName'>): Pick<IChartDescription, 'series' | 'category'>;
|
|
10
18
|
/** Resolves pending semantic state from source metadata without consulting debounced render config. */
|
|
11
|
-
export declare function resolveChartModelEffectiveConfig(chartModel: ChartModel, pending: ChartPendingConfig, dataSet: IUniverDataSet):
|
|
19
|
+
export declare function resolveChartModelEffectiveConfig(chartModel: ChartModel, pending: ChartPendingConfig, dataSet: IUniverDataSet): {
|
|
20
|
+
chartType: ChartTypeBits;
|
|
21
|
+
style: {
|
|
22
|
+
width?: number | undefined;
|
|
23
|
+
height?: number | undefined;
|
|
24
|
+
theme?: string | undefined;
|
|
25
|
+
palette?: string[] | undefined;
|
|
26
|
+
invalidValueType?: InvalidValueType | undefined;
|
|
27
|
+
gradientFill?: boolean | undefined;
|
|
28
|
+
backgroundColor?: import("@univerjs/core").Nullable<string>;
|
|
29
|
+
titleFontSize?: number | undefined;
|
|
30
|
+
fontSize?: number | undefined;
|
|
31
|
+
fontColor?: string | undefined;
|
|
32
|
+
fontFamily?: string | undefined;
|
|
33
|
+
borderColor?: import("@univerjs/core").Nullable<string>;
|
|
34
|
+
borderWidth?: number | undefined;
|
|
35
|
+
plotArea?: {
|
|
36
|
+
left?: number | undefined;
|
|
37
|
+
top?: number | undefined;
|
|
38
|
+
width?: number | undefined;
|
|
39
|
+
height?: number | undefined;
|
|
40
|
+
} | undefined;
|
|
41
|
+
titles?: {
|
|
42
|
+
title?: {
|
|
43
|
+
manualLayout?: {
|
|
44
|
+
left?: number | undefined;
|
|
45
|
+
top?: number | undefined;
|
|
46
|
+
} | undefined;
|
|
47
|
+
bold?: boolean | undefined;
|
|
48
|
+
italic?: boolean | undefined;
|
|
49
|
+
fontSize?: number | undefined;
|
|
50
|
+
color?: string | undefined;
|
|
51
|
+
rotate?: number | undefined;
|
|
52
|
+
family?: string | undefined;
|
|
53
|
+
content?: string | undefined;
|
|
54
|
+
align?: import("../..").LabelAlignEnum | undefined;
|
|
55
|
+
strikethrough?: boolean | undefined;
|
|
56
|
+
underline?: boolean | undefined;
|
|
57
|
+
padAngle?: boolean | undefined;
|
|
58
|
+
axisTitleAlign?: import("../..").AxisAlignEnum | undefined;
|
|
59
|
+
showMaxLabel?: boolean | undefined;
|
|
60
|
+
showMinLabel?: boolean | undefined;
|
|
61
|
+
} | undefined;
|
|
62
|
+
subtitle?: {
|
|
63
|
+
manualLayout?: {
|
|
64
|
+
left?: number | undefined;
|
|
65
|
+
top?: number | undefined;
|
|
66
|
+
} | undefined;
|
|
67
|
+
bold?: boolean | undefined;
|
|
68
|
+
italic?: boolean | undefined;
|
|
69
|
+
fontSize?: number | undefined;
|
|
70
|
+
color?: string | undefined;
|
|
71
|
+
rotate?: number | undefined;
|
|
72
|
+
family?: string | undefined;
|
|
73
|
+
content?: string | undefined;
|
|
74
|
+
align?: import("../..").LabelAlignEnum | undefined;
|
|
75
|
+
strikethrough?: boolean | undefined;
|
|
76
|
+
underline?: boolean | undefined;
|
|
77
|
+
padAngle?: boolean | undefined;
|
|
78
|
+
axisTitleAlign?: import("../..").AxisAlignEnum | undefined;
|
|
79
|
+
showMaxLabel?: boolean | undefined;
|
|
80
|
+
showMinLabel?: boolean | undefined;
|
|
81
|
+
} | undefined;
|
|
82
|
+
xAxisTitle?: {
|
|
83
|
+
bold?: boolean | undefined;
|
|
84
|
+
italic?: boolean | undefined;
|
|
85
|
+
fontSize?: number | undefined;
|
|
86
|
+
color?: string | undefined;
|
|
87
|
+
rotate?: number | undefined;
|
|
88
|
+
family?: string | undefined;
|
|
89
|
+
content?: string | undefined;
|
|
90
|
+
align?: import("../..").LabelAlignEnum | undefined;
|
|
91
|
+
strikethrough?: boolean | undefined;
|
|
92
|
+
underline?: boolean | undefined;
|
|
93
|
+
padAngle?: boolean | undefined;
|
|
94
|
+
axisTitleAlign?: import("../..").AxisAlignEnum | undefined;
|
|
95
|
+
showMaxLabel?: boolean | undefined;
|
|
96
|
+
showMinLabel?: boolean | undefined;
|
|
97
|
+
} | undefined;
|
|
98
|
+
yAxisTitle?: {
|
|
99
|
+
bold?: boolean | undefined;
|
|
100
|
+
italic?: boolean | undefined;
|
|
101
|
+
fontSize?: number | undefined;
|
|
102
|
+
color?: string | undefined;
|
|
103
|
+
rotate?: number | undefined;
|
|
104
|
+
family?: string | undefined;
|
|
105
|
+
content?: string | undefined;
|
|
106
|
+
align?: import("../..").LabelAlignEnum | undefined;
|
|
107
|
+
strikethrough?: boolean | undefined;
|
|
108
|
+
underline?: boolean | undefined;
|
|
109
|
+
padAngle?: boolean | undefined;
|
|
110
|
+
axisTitleAlign?: import("../..").AxisAlignEnum | undefined;
|
|
111
|
+
showMaxLabel?: boolean | undefined;
|
|
112
|
+
showMinLabel?: boolean | undefined;
|
|
113
|
+
} | undefined;
|
|
114
|
+
rightYAxisTitle?: {
|
|
115
|
+
bold?: boolean | undefined;
|
|
116
|
+
italic?: boolean | undefined;
|
|
117
|
+
fontSize?: number | undefined;
|
|
118
|
+
color?: string | undefined;
|
|
119
|
+
rotate?: number | undefined;
|
|
120
|
+
family?: string | undefined;
|
|
121
|
+
content?: string | undefined;
|
|
122
|
+
align?: import("../..").LabelAlignEnum | undefined;
|
|
123
|
+
strikethrough?: boolean | undefined;
|
|
124
|
+
underline?: boolean | undefined;
|
|
125
|
+
padAngle?: boolean | undefined;
|
|
126
|
+
axisTitleAlign?: import("../..").AxisAlignEnum | undefined;
|
|
127
|
+
showMaxLabel?: boolean | undefined;
|
|
128
|
+
showMinLabel?: boolean | undefined;
|
|
129
|
+
} | undefined;
|
|
130
|
+
titlePosition?: TitlePositionEnum | undefined;
|
|
131
|
+
} | undefined;
|
|
132
|
+
legend?: {
|
|
133
|
+
position?: LegendPositionEnum | undefined;
|
|
134
|
+
label?: {
|
|
135
|
+
bold?: boolean | undefined;
|
|
136
|
+
italic?: boolean | undefined;
|
|
137
|
+
fontSize?: number | undefined;
|
|
138
|
+
color?: string | undefined;
|
|
139
|
+
rotate?: number | undefined;
|
|
140
|
+
family?: string | undefined;
|
|
141
|
+
strikethrough?: boolean | undefined;
|
|
142
|
+
underline?: boolean | undefined;
|
|
143
|
+
padAngle?: boolean | undefined;
|
|
144
|
+
axisTitleAlign?: import("../..").AxisAlignEnum | undefined;
|
|
145
|
+
showMaxLabel?: boolean | undefined;
|
|
146
|
+
showMinLabel?: boolean | undefined;
|
|
147
|
+
} | undefined;
|
|
148
|
+
selectMode?: import("../..").SelectModeEnum | undefined;
|
|
149
|
+
wrap?: boolean | undefined;
|
|
150
|
+
} | undefined;
|
|
151
|
+
xAxis?: {
|
|
152
|
+
lineVisible?: boolean | undefined;
|
|
153
|
+
label?: {
|
|
154
|
+
bold?: boolean | undefined;
|
|
155
|
+
italic?: boolean | undefined;
|
|
156
|
+
fontSize?: number | undefined;
|
|
157
|
+
color?: string | undefined;
|
|
158
|
+
visible?: boolean | undefined;
|
|
159
|
+
rotate?: number | undefined;
|
|
160
|
+
family?: string | undefined;
|
|
161
|
+
strikethrough?: boolean | undefined;
|
|
162
|
+
underline?: boolean | undefined;
|
|
163
|
+
padAngle?: boolean | undefined;
|
|
164
|
+
axisTitleAlign?: import("../..").AxisAlignEnum | undefined;
|
|
165
|
+
showMaxLabel?: boolean | undefined;
|
|
166
|
+
showMinLabel?: boolean | undefined;
|
|
167
|
+
} | undefined;
|
|
168
|
+
lineStyle?: {
|
|
169
|
+
visible?: boolean | undefined;
|
|
170
|
+
color?: string | undefined;
|
|
171
|
+
width?: number | undefined;
|
|
172
|
+
dashType?: import("../..").ChartBorderDashType | undefined;
|
|
173
|
+
} | undefined;
|
|
174
|
+
gridLine?: {
|
|
175
|
+
visible?: boolean | undefined;
|
|
176
|
+
color?: string | undefined;
|
|
177
|
+
width?: number | undefined;
|
|
178
|
+
dashType?: import("../..").ChartBorderDashType | undefined;
|
|
179
|
+
} | undefined;
|
|
180
|
+
tick?: {
|
|
181
|
+
visible?: boolean | undefined;
|
|
182
|
+
lineWidth?: number | undefined;
|
|
183
|
+
lineColor?: string | undefined;
|
|
184
|
+
length?: number | undefined;
|
|
185
|
+
position?: import("../..").PieLabelPosition | undefined;
|
|
186
|
+
} | undefined;
|
|
187
|
+
reverse?: boolean | undefined;
|
|
188
|
+
min?: number | null | undefined;
|
|
189
|
+
max?: number | null | undefined;
|
|
190
|
+
format?: string | undefined;
|
|
191
|
+
} | undefined;
|
|
192
|
+
yAxis?: {
|
|
193
|
+
lineVisible?: boolean | undefined;
|
|
194
|
+
label?: {
|
|
195
|
+
bold?: boolean | undefined;
|
|
196
|
+
italic?: boolean | undefined;
|
|
197
|
+
fontSize?: number | undefined;
|
|
198
|
+
color?: string | undefined;
|
|
199
|
+
visible?: boolean | undefined;
|
|
200
|
+
rotate?: number | undefined;
|
|
201
|
+
family?: string | undefined;
|
|
202
|
+
strikethrough?: boolean | undefined;
|
|
203
|
+
underline?: boolean | undefined;
|
|
204
|
+
padAngle?: boolean | undefined;
|
|
205
|
+
axisTitleAlign?: import("../..").AxisAlignEnum | undefined;
|
|
206
|
+
showMaxLabel?: boolean | undefined;
|
|
207
|
+
showMinLabel?: boolean | undefined;
|
|
208
|
+
} | undefined;
|
|
209
|
+
lineStyle?: {
|
|
210
|
+
visible?: boolean | undefined;
|
|
211
|
+
color?: string | undefined;
|
|
212
|
+
width?: number | undefined;
|
|
213
|
+
dashType?: import("../..").ChartBorderDashType | undefined;
|
|
214
|
+
} | undefined;
|
|
215
|
+
gridLine?: {
|
|
216
|
+
visible?: boolean | undefined;
|
|
217
|
+
color?: string | undefined;
|
|
218
|
+
width?: number | undefined;
|
|
219
|
+
dashType?: import("../..").ChartBorderDashType | undefined;
|
|
220
|
+
} | undefined;
|
|
221
|
+
tick?: {
|
|
222
|
+
visible?: boolean | undefined;
|
|
223
|
+
lineWidth?: number | undefined;
|
|
224
|
+
lineColor?: string | undefined;
|
|
225
|
+
length?: number | undefined;
|
|
226
|
+
position?: import("../..").PieLabelPosition | undefined;
|
|
227
|
+
} | undefined;
|
|
228
|
+
reverse?: boolean | undefined;
|
|
229
|
+
min?: number | null | undefined;
|
|
230
|
+
max?: number | null | undefined;
|
|
231
|
+
format?: string | undefined;
|
|
232
|
+
} | undefined;
|
|
233
|
+
rightYAxis?: {
|
|
234
|
+
label?: {
|
|
235
|
+
bold?: boolean | undefined;
|
|
236
|
+
italic?: boolean | undefined;
|
|
237
|
+
fontSize?: number | undefined;
|
|
238
|
+
color?: string | undefined;
|
|
239
|
+
visible?: boolean | undefined;
|
|
240
|
+
rotate?: number | undefined;
|
|
241
|
+
family?: string | undefined;
|
|
242
|
+
strikethrough?: boolean | undefined;
|
|
243
|
+
underline?: boolean | undefined;
|
|
244
|
+
padAngle?: boolean | undefined;
|
|
245
|
+
axisTitleAlign?: import("../..").AxisAlignEnum | undefined;
|
|
246
|
+
showMaxLabel?: boolean | undefined;
|
|
247
|
+
showMinLabel?: boolean | undefined;
|
|
248
|
+
} | undefined;
|
|
249
|
+
min?: number | null | undefined;
|
|
250
|
+
max?: number | null | undefined;
|
|
251
|
+
tick?: {
|
|
252
|
+
visible?: boolean | undefined;
|
|
253
|
+
lineWidth?: number | undefined;
|
|
254
|
+
lineColor?: string | undefined;
|
|
255
|
+
length?: number | undefined;
|
|
256
|
+
position?: import("../..").PieLabelPosition | undefined;
|
|
257
|
+
} | undefined;
|
|
258
|
+
format?: string | undefined;
|
|
259
|
+
gridLine?: {
|
|
260
|
+
visible?: boolean | undefined;
|
|
261
|
+
color?: string | undefined;
|
|
262
|
+
width?: number | undefined;
|
|
263
|
+
dashType?: import("../..").ChartBorderDashType | undefined;
|
|
264
|
+
} | undefined;
|
|
265
|
+
lineVisible?: boolean | undefined;
|
|
266
|
+
lineStyle?: {
|
|
267
|
+
visible?: boolean | undefined;
|
|
268
|
+
color?: string | undefined;
|
|
269
|
+
width?: number | undefined;
|
|
270
|
+
dashType?: import("../..").ChartBorderDashType | undefined;
|
|
271
|
+
} | undefined;
|
|
272
|
+
} | undefined;
|
|
273
|
+
allSeriesStyle?: {
|
|
274
|
+
label?: {
|
|
275
|
+
contentType?: number | undefined;
|
|
276
|
+
position?: SeriesLabelPosition | undefined;
|
|
277
|
+
format?: string | undefined;
|
|
278
|
+
customValues?: {
|
|
279
|
+
[x: number]: string | undefined;
|
|
280
|
+
} | undefined;
|
|
281
|
+
visible?: boolean | undefined;
|
|
282
|
+
content?: string | undefined;
|
|
283
|
+
fontSize?: number | undefined;
|
|
284
|
+
color?: string | undefined;
|
|
285
|
+
align?: import("../..").LabelAlignEnum | undefined;
|
|
286
|
+
bold?: boolean | undefined;
|
|
287
|
+
family?: string | undefined;
|
|
288
|
+
strikethrough?: boolean | undefined;
|
|
289
|
+
italic?: boolean | undefined;
|
|
290
|
+
underline?: boolean | undefined;
|
|
291
|
+
padAngle?: boolean | undefined;
|
|
292
|
+
axisTitleAlign?: import("../..").AxisAlignEnum | undefined;
|
|
293
|
+
showMaxLabel?: boolean | undefined;
|
|
294
|
+
showMinLabel?: boolean | undefined;
|
|
295
|
+
rotate?: number | undefined;
|
|
296
|
+
} | undefined;
|
|
297
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
298
|
+
point?: {
|
|
299
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
300
|
+
size?: number | undefined;
|
|
301
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
302
|
+
} | undefined;
|
|
303
|
+
waterfall?: {
|
|
304
|
+
positive?: {
|
|
305
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
306
|
+
rightYAxis?: boolean | undefined;
|
|
307
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
308
|
+
fillOpacity?: number | undefined;
|
|
309
|
+
border?: {
|
|
310
|
+
opacity?: number | undefined;
|
|
311
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
312
|
+
width?: number | undefined;
|
|
313
|
+
dashType?: import("../..").ChartBorderDashType | undefined;
|
|
314
|
+
} | undefined;
|
|
315
|
+
label?: {
|
|
316
|
+
contentType?: number | undefined;
|
|
317
|
+
position?: SeriesLabelPosition | undefined;
|
|
318
|
+
format?: string | undefined;
|
|
319
|
+
customValues?: {
|
|
320
|
+
[x: number]: string | undefined;
|
|
321
|
+
} | undefined;
|
|
322
|
+
visible?: boolean | undefined;
|
|
323
|
+
content?: string | undefined;
|
|
324
|
+
fontSize?: number | undefined;
|
|
325
|
+
color?: string | undefined;
|
|
326
|
+
align?: import("../..").LabelAlignEnum | undefined;
|
|
327
|
+
bold?: boolean | undefined;
|
|
328
|
+
family?: string | undefined;
|
|
329
|
+
strikethrough?: boolean | undefined;
|
|
330
|
+
italic?: boolean | undefined;
|
|
331
|
+
underline?: boolean | undefined;
|
|
332
|
+
padAngle?: boolean | undefined;
|
|
333
|
+
axisTitleAlign?: import("../..").AxisAlignEnum | undefined;
|
|
334
|
+
showMaxLabel?: boolean | undefined;
|
|
335
|
+
showMinLabel?: boolean | undefined;
|
|
336
|
+
rotate?: number | undefined;
|
|
337
|
+
} | undefined;
|
|
338
|
+
point?: {
|
|
339
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
340
|
+
size?: number | undefined;
|
|
341
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
342
|
+
} | undefined;
|
|
343
|
+
dataPoints?: {
|
|
344
|
+
[x: number]: {
|
|
345
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
346
|
+
fillOpacity?: number | undefined;
|
|
347
|
+
size?: number | undefined;
|
|
348
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
349
|
+
} | undefined;
|
|
350
|
+
} | undefined;
|
|
351
|
+
waterfall?: /*elided*/ any | undefined;
|
|
352
|
+
name?: string | undefined;
|
|
353
|
+
} | undefined;
|
|
354
|
+
negative?: {
|
|
355
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
356
|
+
rightYAxis?: boolean | undefined;
|
|
357
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
358
|
+
fillOpacity?: number | undefined;
|
|
359
|
+
border?: {
|
|
360
|
+
opacity?: number | undefined;
|
|
361
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
362
|
+
width?: number | undefined;
|
|
363
|
+
dashType?: import("../..").ChartBorderDashType | undefined;
|
|
364
|
+
} | undefined;
|
|
365
|
+
label?: {
|
|
366
|
+
contentType?: number | undefined;
|
|
367
|
+
position?: SeriesLabelPosition | undefined;
|
|
368
|
+
format?: string | undefined;
|
|
369
|
+
customValues?: {
|
|
370
|
+
[x: number]: string | undefined;
|
|
371
|
+
} | undefined;
|
|
372
|
+
visible?: boolean | undefined;
|
|
373
|
+
content?: string | undefined;
|
|
374
|
+
fontSize?: number | undefined;
|
|
375
|
+
color?: string | undefined;
|
|
376
|
+
align?: import("../..").LabelAlignEnum | undefined;
|
|
377
|
+
bold?: boolean | undefined;
|
|
378
|
+
family?: string | undefined;
|
|
379
|
+
strikethrough?: boolean | undefined;
|
|
380
|
+
italic?: boolean | undefined;
|
|
381
|
+
underline?: boolean | undefined;
|
|
382
|
+
padAngle?: boolean | undefined;
|
|
383
|
+
axisTitleAlign?: import("../..").AxisAlignEnum | undefined;
|
|
384
|
+
showMaxLabel?: boolean | undefined;
|
|
385
|
+
showMinLabel?: boolean | undefined;
|
|
386
|
+
rotate?: number | undefined;
|
|
387
|
+
} | undefined;
|
|
388
|
+
point?: {
|
|
389
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
390
|
+
size?: number | undefined;
|
|
391
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
392
|
+
} | undefined;
|
|
393
|
+
dataPoints?: {
|
|
394
|
+
[x: number]: {
|
|
395
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
396
|
+
fillOpacity?: number | undefined;
|
|
397
|
+
size?: number | undefined;
|
|
398
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
399
|
+
} | undefined;
|
|
400
|
+
} | undefined;
|
|
401
|
+
waterfall?: /*elided*/ any | undefined;
|
|
402
|
+
name?: string | undefined;
|
|
403
|
+
} | undefined;
|
|
404
|
+
subtotal?: {
|
|
405
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
406
|
+
rightYAxis?: boolean | undefined;
|
|
407
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
408
|
+
fillOpacity?: number | undefined;
|
|
409
|
+
border?: {
|
|
410
|
+
opacity?: number | undefined;
|
|
411
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
412
|
+
width?: number | undefined;
|
|
413
|
+
dashType?: import("../..").ChartBorderDashType | undefined;
|
|
414
|
+
} | undefined;
|
|
415
|
+
label?: {
|
|
416
|
+
contentType?: number | undefined;
|
|
417
|
+
position?: SeriesLabelPosition | undefined;
|
|
418
|
+
format?: string | undefined;
|
|
419
|
+
customValues?: {
|
|
420
|
+
[x: number]: string | undefined;
|
|
421
|
+
} | undefined;
|
|
422
|
+
visible?: boolean | undefined;
|
|
423
|
+
content?: string | undefined;
|
|
424
|
+
fontSize?: number | undefined;
|
|
425
|
+
color?: string | undefined;
|
|
426
|
+
align?: import("../..").LabelAlignEnum | undefined;
|
|
427
|
+
bold?: boolean | undefined;
|
|
428
|
+
family?: string | undefined;
|
|
429
|
+
strikethrough?: boolean | undefined;
|
|
430
|
+
italic?: boolean | undefined;
|
|
431
|
+
underline?: boolean | undefined;
|
|
432
|
+
padAngle?: boolean | undefined;
|
|
433
|
+
axisTitleAlign?: import("../..").AxisAlignEnum | undefined;
|
|
434
|
+
showMaxLabel?: boolean | undefined;
|
|
435
|
+
showMinLabel?: boolean | undefined;
|
|
436
|
+
rotate?: number | undefined;
|
|
437
|
+
} | undefined;
|
|
438
|
+
point?: {
|
|
439
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
440
|
+
size?: number | undefined;
|
|
441
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
442
|
+
} | undefined;
|
|
443
|
+
dataPoints?: {
|
|
444
|
+
[x: number]: {
|
|
445
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
446
|
+
fillOpacity?: number | undefined;
|
|
447
|
+
size?: number | undefined;
|
|
448
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
449
|
+
} | undefined;
|
|
450
|
+
} | undefined;
|
|
451
|
+
waterfall?: /*elided*/ any | undefined;
|
|
452
|
+
name?: string | undefined;
|
|
453
|
+
} | undefined;
|
|
454
|
+
} | undefined;
|
|
455
|
+
fillOpacity?: number | undefined;
|
|
456
|
+
border?: {
|
|
457
|
+
opacity?: number | undefined;
|
|
458
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
459
|
+
width?: number | undefined;
|
|
460
|
+
dashType?: import("../..").ChartBorderDashType | undefined;
|
|
461
|
+
} | undefined;
|
|
462
|
+
rightYAxis?: boolean | undefined;
|
|
463
|
+
} | undefined;
|
|
464
|
+
seriesStyleMap?: {
|
|
465
|
+
[x: string]: {
|
|
466
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
467
|
+
rightYAxis?: boolean | undefined;
|
|
468
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
469
|
+
fillOpacity?: number | undefined;
|
|
470
|
+
border?: {
|
|
471
|
+
opacity?: number | undefined;
|
|
472
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
473
|
+
width?: number | undefined;
|
|
474
|
+
dashType?: import("../..").ChartBorderDashType | undefined;
|
|
475
|
+
} | undefined;
|
|
476
|
+
label?: {
|
|
477
|
+
contentType?: number | undefined;
|
|
478
|
+
position?: SeriesLabelPosition | undefined;
|
|
479
|
+
format?: string | undefined;
|
|
480
|
+
customValues?: {
|
|
481
|
+
[x: number]: string | undefined;
|
|
482
|
+
} | undefined;
|
|
483
|
+
visible?: boolean | undefined;
|
|
484
|
+
content?: string | undefined;
|
|
485
|
+
fontSize?: number | undefined;
|
|
486
|
+
color?: string | undefined;
|
|
487
|
+
align?: import("../..").LabelAlignEnum | undefined;
|
|
488
|
+
bold?: boolean | undefined;
|
|
489
|
+
family?: string | undefined;
|
|
490
|
+
strikethrough?: boolean | undefined;
|
|
491
|
+
italic?: boolean | undefined;
|
|
492
|
+
underline?: boolean | undefined;
|
|
493
|
+
padAngle?: boolean | undefined;
|
|
494
|
+
axisTitleAlign?: import("../..").AxisAlignEnum | undefined;
|
|
495
|
+
showMaxLabel?: boolean | undefined;
|
|
496
|
+
showMinLabel?: boolean | undefined;
|
|
497
|
+
rotate?: number | undefined;
|
|
498
|
+
} | undefined;
|
|
499
|
+
point?: {
|
|
500
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
501
|
+
size?: number | undefined;
|
|
502
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
503
|
+
} | undefined;
|
|
504
|
+
dataPoints?: {
|
|
505
|
+
[x: number]: {
|
|
506
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
507
|
+
fillOpacity?: number | undefined;
|
|
508
|
+
size?: number | undefined;
|
|
509
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
510
|
+
} | undefined;
|
|
511
|
+
} | undefined;
|
|
512
|
+
waterfall?: {
|
|
513
|
+
positive?: {
|
|
514
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
515
|
+
rightYAxis?: boolean | undefined;
|
|
516
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
517
|
+
fillOpacity?: number | undefined;
|
|
518
|
+
border?: {
|
|
519
|
+
opacity?: number | undefined;
|
|
520
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
521
|
+
width?: number | undefined;
|
|
522
|
+
dashType?: import("../..").ChartBorderDashType | undefined;
|
|
523
|
+
} | undefined;
|
|
524
|
+
label?: {
|
|
525
|
+
contentType?: number | undefined;
|
|
526
|
+
position?: SeriesLabelPosition | undefined;
|
|
527
|
+
format?: string | undefined;
|
|
528
|
+
customValues?: {
|
|
529
|
+
[x: number]: string | undefined;
|
|
530
|
+
} | undefined;
|
|
531
|
+
visible?: boolean | undefined;
|
|
532
|
+
content?: string | undefined;
|
|
533
|
+
fontSize?: number | undefined;
|
|
534
|
+
color?: string | undefined;
|
|
535
|
+
align?: import("../..").LabelAlignEnum | undefined;
|
|
536
|
+
bold?: boolean | undefined;
|
|
537
|
+
family?: string | undefined;
|
|
538
|
+
strikethrough?: boolean | undefined;
|
|
539
|
+
italic?: boolean | undefined;
|
|
540
|
+
underline?: boolean | undefined;
|
|
541
|
+
padAngle?: boolean | undefined;
|
|
542
|
+
axisTitleAlign?: import("../..").AxisAlignEnum | undefined;
|
|
543
|
+
showMaxLabel?: boolean | undefined;
|
|
544
|
+
showMinLabel?: boolean | undefined;
|
|
545
|
+
rotate?: number | undefined;
|
|
546
|
+
} | undefined;
|
|
547
|
+
point?: {
|
|
548
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
549
|
+
size?: number | undefined;
|
|
550
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
551
|
+
} | undefined;
|
|
552
|
+
dataPoints?: {
|
|
553
|
+
[x: number]: {
|
|
554
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
555
|
+
fillOpacity?: number | undefined;
|
|
556
|
+
size?: number | undefined;
|
|
557
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
558
|
+
} | undefined;
|
|
559
|
+
} | undefined;
|
|
560
|
+
waterfall?: /*elided*/ any | undefined;
|
|
561
|
+
name?: string | undefined;
|
|
562
|
+
} | undefined;
|
|
563
|
+
negative?: {
|
|
564
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
565
|
+
rightYAxis?: boolean | undefined;
|
|
566
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
567
|
+
fillOpacity?: number | undefined;
|
|
568
|
+
border?: {
|
|
569
|
+
opacity?: number | undefined;
|
|
570
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
571
|
+
width?: number | undefined;
|
|
572
|
+
dashType?: import("../..").ChartBorderDashType | undefined;
|
|
573
|
+
} | undefined;
|
|
574
|
+
label?: {
|
|
575
|
+
contentType?: number | undefined;
|
|
576
|
+
position?: SeriesLabelPosition | undefined;
|
|
577
|
+
format?: string | undefined;
|
|
578
|
+
customValues?: {
|
|
579
|
+
[x: number]: string | undefined;
|
|
580
|
+
} | undefined;
|
|
581
|
+
visible?: boolean | undefined;
|
|
582
|
+
content?: string | undefined;
|
|
583
|
+
fontSize?: number | undefined;
|
|
584
|
+
color?: string | undefined;
|
|
585
|
+
align?: import("../..").LabelAlignEnum | undefined;
|
|
586
|
+
bold?: boolean | undefined;
|
|
587
|
+
family?: string | undefined;
|
|
588
|
+
strikethrough?: boolean | undefined;
|
|
589
|
+
italic?: boolean | undefined;
|
|
590
|
+
underline?: boolean | undefined;
|
|
591
|
+
padAngle?: boolean | undefined;
|
|
592
|
+
axisTitleAlign?: import("../..").AxisAlignEnum | undefined;
|
|
593
|
+
showMaxLabel?: boolean | undefined;
|
|
594
|
+
showMinLabel?: boolean | undefined;
|
|
595
|
+
rotate?: number | undefined;
|
|
596
|
+
} | undefined;
|
|
597
|
+
point?: {
|
|
598
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
599
|
+
size?: number | undefined;
|
|
600
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
601
|
+
} | undefined;
|
|
602
|
+
dataPoints?: {
|
|
603
|
+
[x: number]: {
|
|
604
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
605
|
+
fillOpacity?: number | undefined;
|
|
606
|
+
size?: number | undefined;
|
|
607
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
608
|
+
} | undefined;
|
|
609
|
+
} | undefined;
|
|
610
|
+
waterfall?: /*elided*/ any | undefined;
|
|
611
|
+
name?: string | undefined;
|
|
612
|
+
} | undefined;
|
|
613
|
+
subtotal?: {
|
|
614
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
615
|
+
rightYAxis?: boolean | undefined;
|
|
616
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
617
|
+
fillOpacity?: number | undefined;
|
|
618
|
+
border?: {
|
|
619
|
+
opacity?: number | undefined;
|
|
620
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
621
|
+
width?: number | undefined;
|
|
622
|
+
dashType?: import("../..").ChartBorderDashType | undefined;
|
|
623
|
+
} | undefined;
|
|
624
|
+
label?: {
|
|
625
|
+
contentType?: number | undefined;
|
|
626
|
+
position?: SeriesLabelPosition | undefined;
|
|
627
|
+
format?: string | undefined;
|
|
628
|
+
customValues?: {
|
|
629
|
+
[x: number]: string | undefined;
|
|
630
|
+
} | undefined;
|
|
631
|
+
visible?: boolean | undefined;
|
|
632
|
+
content?: string | undefined;
|
|
633
|
+
fontSize?: number | undefined;
|
|
634
|
+
color?: string | undefined;
|
|
635
|
+
align?: import("../..").LabelAlignEnum | undefined;
|
|
636
|
+
bold?: boolean | undefined;
|
|
637
|
+
family?: string | undefined;
|
|
638
|
+
strikethrough?: boolean | undefined;
|
|
639
|
+
italic?: boolean | undefined;
|
|
640
|
+
underline?: boolean | undefined;
|
|
641
|
+
padAngle?: boolean | undefined;
|
|
642
|
+
axisTitleAlign?: import("../..").AxisAlignEnum | undefined;
|
|
643
|
+
showMaxLabel?: boolean | undefined;
|
|
644
|
+
showMinLabel?: boolean | undefined;
|
|
645
|
+
rotate?: number | undefined;
|
|
646
|
+
} | undefined;
|
|
647
|
+
point?: {
|
|
648
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
649
|
+
size?: number | undefined;
|
|
650
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
651
|
+
} | undefined;
|
|
652
|
+
dataPoints?: {
|
|
653
|
+
[x: number]: {
|
|
654
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
655
|
+
fillOpacity?: number | undefined;
|
|
656
|
+
size?: number | undefined;
|
|
657
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
658
|
+
} | undefined;
|
|
659
|
+
} | undefined;
|
|
660
|
+
waterfall?: /*elided*/ any | undefined;
|
|
661
|
+
name?: string | undefined;
|
|
662
|
+
} | undefined;
|
|
663
|
+
} | undefined;
|
|
664
|
+
} | undefined;
|
|
665
|
+
} | undefined;
|
|
666
|
+
bar?: {
|
|
667
|
+
gapWidth?: number | undefined;
|
|
668
|
+
overlap?: number | undefined;
|
|
669
|
+
is3D?: boolean | undefined;
|
|
670
|
+
shape?: import("../..").BarShape | undefined;
|
|
671
|
+
rotX?: number | undefined;
|
|
672
|
+
rotY?: number | undefined;
|
|
673
|
+
} | undefined;
|
|
674
|
+
bubble?: {
|
|
675
|
+
scale?: number | undefined;
|
|
676
|
+
sizeRepresents?: "area" | "width" | undefined;
|
|
677
|
+
} | undefined;
|
|
678
|
+
trendlines?: import("../..").ITrendLine[] | undefined;
|
|
679
|
+
pie?: {
|
|
680
|
+
composite?: {
|
|
681
|
+
enabled?: boolean | undefined;
|
|
682
|
+
secondaryPlot?: {
|
|
683
|
+
type?: PieSecondaryPlotType | undefined;
|
|
684
|
+
split?: {
|
|
685
|
+
type?: "auto" | undefined;
|
|
686
|
+
} | {
|
|
687
|
+
type?: "position" | undefined;
|
|
688
|
+
count?: number | undefined;
|
|
689
|
+
} | {
|
|
690
|
+
type?: "value" | undefined;
|
|
691
|
+
lessThan?: number | undefined;
|
|
692
|
+
} | {
|
|
693
|
+
type?: "percentage" | undefined;
|
|
694
|
+
lessThan?: number | undefined;
|
|
695
|
+
} | {
|
|
696
|
+
type?: "custom" | undefined;
|
|
697
|
+
pointIndexes?: number[] | undefined;
|
|
698
|
+
} | undefined;
|
|
699
|
+
size?: number | undefined;
|
|
700
|
+
gapWidth?: number | undefined;
|
|
701
|
+
connector?: {
|
|
702
|
+
visible?: boolean | undefined;
|
|
703
|
+
color?: string | undefined;
|
|
704
|
+
width?: number | undefined;
|
|
705
|
+
opacity?: number | undefined;
|
|
706
|
+
dashType?: import("../..").ChartBorderDashType | undefined;
|
|
707
|
+
} | undefined;
|
|
708
|
+
} | undefined;
|
|
709
|
+
aggregate?: {
|
|
710
|
+
label?: string | undefined;
|
|
711
|
+
style?: {
|
|
712
|
+
color?: ChartColor | undefined;
|
|
713
|
+
fillOpacity?: number | undefined;
|
|
714
|
+
} | undefined;
|
|
715
|
+
} | undefined;
|
|
716
|
+
} | undefined;
|
|
717
|
+
startAngle?: number | undefined;
|
|
718
|
+
doughnutHole?: import("@univerjs/core").Nullable<number>;
|
|
719
|
+
explosion?: number | undefined;
|
|
720
|
+
labelStyle?: {
|
|
721
|
+
contentType?: number | undefined;
|
|
722
|
+
position?: import("../..").PieLabelPosition | undefined;
|
|
723
|
+
format?: string | undefined;
|
|
724
|
+
bold?: boolean | undefined;
|
|
725
|
+
italic?: boolean | undefined;
|
|
726
|
+
fontSize?: number | undefined;
|
|
727
|
+
color?: string | undefined;
|
|
728
|
+
visible?: boolean | undefined;
|
|
729
|
+
rotate?: number | undefined;
|
|
730
|
+
family?: string | undefined;
|
|
731
|
+
strikethrough?: boolean | undefined;
|
|
732
|
+
underline?: boolean | undefined;
|
|
733
|
+
padAngle?: boolean | undefined;
|
|
734
|
+
axisTitleAlign?: import("../..").AxisAlignEnum | undefined;
|
|
735
|
+
showMaxLabel?: boolean | undefined;
|
|
736
|
+
showMinLabel?: boolean | undefined;
|
|
737
|
+
} | undefined;
|
|
738
|
+
borderColor?: string | undefined;
|
|
739
|
+
hasPaddingAngle?: boolean | undefined;
|
|
740
|
+
is3D?: boolean | undefined;
|
|
741
|
+
isHalfPie?: boolean | undefined;
|
|
742
|
+
rosePie?: boolean | undefined;
|
|
743
|
+
showLabelLine?: boolean | undefined;
|
|
744
|
+
valueScale?: number | undefined;
|
|
745
|
+
sliceStyles?: {
|
|
746
|
+
[x: number]: {
|
|
747
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
748
|
+
fillOpacity?: number | undefined;
|
|
749
|
+
} | undefined;
|
|
750
|
+
} | undefined;
|
|
751
|
+
} | undefined;
|
|
752
|
+
area?: {
|
|
753
|
+
lineStyle?: import("../..").AreaLineStyle | undefined;
|
|
754
|
+
} | undefined;
|
|
755
|
+
radar?: {
|
|
756
|
+
shape?: import("../..").RadarShape | undefined;
|
|
757
|
+
fill?: boolean | undefined;
|
|
758
|
+
} | undefined;
|
|
759
|
+
funnel?: {
|
|
760
|
+
gap?: number | undefined;
|
|
761
|
+
useAbsValue?: boolean | undefined;
|
|
762
|
+
} | undefined;
|
|
763
|
+
wordCloud?: {
|
|
764
|
+
maskImage?: string | undefined;
|
|
765
|
+
shape?: import("../..").WordCloudShapeEnum | undefined;
|
|
766
|
+
repeat?: boolean | undefined;
|
|
767
|
+
} | undefined;
|
|
768
|
+
relation?: {
|
|
769
|
+
layout?: import("../..").RelationChartLayoutEnum | undefined;
|
|
770
|
+
useValueAsSymbolSize?: boolean | undefined;
|
|
771
|
+
useEmphasis?: boolean | undefined;
|
|
772
|
+
force?: {
|
|
773
|
+
repulsion?: number | undefined;
|
|
774
|
+
edgeLength?: number | undefined;
|
|
775
|
+
gravity?: number | undefined;
|
|
776
|
+
} | undefined;
|
|
777
|
+
circular?: {
|
|
778
|
+
rotateLabel?: boolean | undefined;
|
|
779
|
+
} | undefined;
|
|
780
|
+
nodeShape?: import("../..").LinePointShape | undefined;
|
|
781
|
+
} | undefined;
|
|
782
|
+
waterfall?: {
|
|
783
|
+
stackType?: import("../..").WaterfallStackTypeEnum | undefined;
|
|
784
|
+
useSubtotal?: boolean | undefined;
|
|
785
|
+
pointRoles?: import("../../types").IWaterfallPointRole[] | undefined;
|
|
786
|
+
connector?: boolean | {
|
|
787
|
+
color?: string | undefined;
|
|
788
|
+
width?: number | undefined;
|
|
789
|
+
opacity?: number | undefined;
|
|
790
|
+
dashType?: import("../..").ChartBorderDashType | undefined;
|
|
791
|
+
} | undefined;
|
|
792
|
+
} | undefined;
|
|
793
|
+
markLines?: import("../../types").IChartMarkLine[] | undefined;
|
|
794
|
+
tooltip?: {
|
|
795
|
+
indicatorLabelColor?: string | undefined;
|
|
796
|
+
indicatorLineType?: import("../..").ChartBorderDashType | undefined;
|
|
797
|
+
indicatorLineColor?: string | undefined;
|
|
798
|
+
indicatorLabelTextColor?: string | undefined;
|
|
799
|
+
} | undefined;
|
|
800
|
+
pareto?: {
|
|
801
|
+
lineStyle?: {
|
|
802
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
803
|
+
rightYAxis?: boolean | undefined;
|
|
804
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
805
|
+
fillOpacity?: number | undefined;
|
|
806
|
+
border?: {
|
|
807
|
+
opacity?: number | undefined;
|
|
808
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
809
|
+
width?: number | undefined;
|
|
810
|
+
dashType?: import("../..").ChartBorderDashType | undefined;
|
|
811
|
+
} | undefined;
|
|
812
|
+
label?: {
|
|
813
|
+
contentType?: number | undefined;
|
|
814
|
+
position?: SeriesLabelPosition | undefined;
|
|
815
|
+
format?: string | undefined;
|
|
816
|
+
customValues?: {
|
|
817
|
+
[x: number]: string | undefined;
|
|
818
|
+
} | undefined;
|
|
819
|
+
visible?: boolean | undefined;
|
|
820
|
+
content?: string | undefined;
|
|
821
|
+
fontSize?: number | undefined;
|
|
822
|
+
color?: string | undefined;
|
|
823
|
+
align?: import("../..").LabelAlignEnum | undefined;
|
|
824
|
+
bold?: boolean | undefined;
|
|
825
|
+
family?: string | undefined;
|
|
826
|
+
strikethrough?: boolean | undefined;
|
|
827
|
+
italic?: boolean | undefined;
|
|
828
|
+
underline?: boolean | undefined;
|
|
829
|
+
padAngle?: boolean | undefined;
|
|
830
|
+
axisTitleAlign?: import("../..").AxisAlignEnum | undefined;
|
|
831
|
+
showMaxLabel?: boolean | undefined;
|
|
832
|
+
showMinLabel?: boolean | undefined;
|
|
833
|
+
rotate?: number | undefined;
|
|
834
|
+
} | undefined;
|
|
835
|
+
point?: {
|
|
836
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
837
|
+
size?: number | undefined;
|
|
838
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
839
|
+
} | undefined;
|
|
840
|
+
dataPoints?: {
|
|
841
|
+
[x: number]: {
|
|
842
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
843
|
+
fillOpacity?: number | undefined;
|
|
844
|
+
size?: number | undefined;
|
|
845
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
846
|
+
} | undefined;
|
|
847
|
+
} | undefined;
|
|
848
|
+
waterfall?: {
|
|
849
|
+
positive?: {
|
|
850
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
851
|
+
rightYAxis?: boolean | undefined;
|
|
852
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
853
|
+
fillOpacity?: number | undefined;
|
|
854
|
+
border?: {
|
|
855
|
+
opacity?: number | undefined;
|
|
856
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
857
|
+
width?: number | undefined;
|
|
858
|
+
dashType?: import("../..").ChartBorderDashType | undefined;
|
|
859
|
+
} | undefined;
|
|
860
|
+
label?: {
|
|
861
|
+
contentType?: number | undefined;
|
|
862
|
+
position?: SeriesLabelPosition | undefined;
|
|
863
|
+
format?: string | undefined;
|
|
864
|
+
customValues?: {
|
|
865
|
+
[x: number]: string | undefined;
|
|
866
|
+
} | undefined;
|
|
867
|
+
visible?: boolean | undefined;
|
|
868
|
+
content?: string | undefined;
|
|
869
|
+
fontSize?: number | undefined;
|
|
870
|
+
color?: string | undefined;
|
|
871
|
+
align?: import("../..").LabelAlignEnum | undefined;
|
|
872
|
+
bold?: boolean | undefined;
|
|
873
|
+
family?: string | undefined;
|
|
874
|
+
strikethrough?: boolean | undefined;
|
|
875
|
+
italic?: boolean | undefined;
|
|
876
|
+
underline?: boolean | undefined;
|
|
877
|
+
padAngle?: boolean | undefined;
|
|
878
|
+
axisTitleAlign?: import("../..").AxisAlignEnum | undefined;
|
|
879
|
+
showMaxLabel?: boolean | undefined;
|
|
880
|
+
showMinLabel?: boolean | undefined;
|
|
881
|
+
rotate?: number | undefined;
|
|
882
|
+
} | undefined;
|
|
883
|
+
point?: {
|
|
884
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
885
|
+
size?: number | undefined;
|
|
886
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
887
|
+
} | undefined;
|
|
888
|
+
dataPoints?: {
|
|
889
|
+
[x: number]: {
|
|
890
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
891
|
+
fillOpacity?: number | undefined;
|
|
892
|
+
size?: number | undefined;
|
|
893
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
894
|
+
} | undefined;
|
|
895
|
+
} | undefined;
|
|
896
|
+
waterfall?: /*elided*/ any | undefined;
|
|
897
|
+
name?: string | undefined;
|
|
898
|
+
} | undefined;
|
|
899
|
+
negative?: {
|
|
900
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
901
|
+
rightYAxis?: boolean | undefined;
|
|
902
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
903
|
+
fillOpacity?: number | undefined;
|
|
904
|
+
border?: {
|
|
905
|
+
opacity?: number | undefined;
|
|
906
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
907
|
+
width?: number | undefined;
|
|
908
|
+
dashType?: import("../..").ChartBorderDashType | undefined;
|
|
909
|
+
} | undefined;
|
|
910
|
+
label?: {
|
|
911
|
+
contentType?: number | undefined;
|
|
912
|
+
position?: SeriesLabelPosition | undefined;
|
|
913
|
+
format?: string | undefined;
|
|
914
|
+
customValues?: {
|
|
915
|
+
[x: number]: string | undefined;
|
|
916
|
+
} | undefined;
|
|
917
|
+
visible?: boolean | undefined;
|
|
918
|
+
content?: string | undefined;
|
|
919
|
+
fontSize?: number | undefined;
|
|
920
|
+
color?: string | undefined;
|
|
921
|
+
align?: import("../..").LabelAlignEnum | undefined;
|
|
922
|
+
bold?: boolean | undefined;
|
|
923
|
+
family?: string | undefined;
|
|
924
|
+
strikethrough?: boolean | undefined;
|
|
925
|
+
italic?: boolean | undefined;
|
|
926
|
+
underline?: boolean | undefined;
|
|
927
|
+
padAngle?: boolean | undefined;
|
|
928
|
+
axisTitleAlign?: import("../..").AxisAlignEnum | undefined;
|
|
929
|
+
showMaxLabel?: boolean | undefined;
|
|
930
|
+
showMinLabel?: boolean | undefined;
|
|
931
|
+
rotate?: number | undefined;
|
|
932
|
+
} | undefined;
|
|
933
|
+
point?: {
|
|
934
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
935
|
+
size?: number | undefined;
|
|
936
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
937
|
+
} | undefined;
|
|
938
|
+
dataPoints?: {
|
|
939
|
+
[x: number]: {
|
|
940
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
941
|
+
fillOpacity?: number | undefined;
|
|
942
|
+
size?: number | undefined;
|
|
943
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
944
|
+
} | undefined;
|
|
945
|
+
} | undefined;
|
|
946
|
+
waterfall?: /*elided*/ any | undefined;
|
|
947
|
+
name?: string | undefined;
|
|
948
|
+
} | undefined;
|
|
949
|
+
subtotal?: {
|
|
950
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
951
|
+
rightYAxis?: boolean | undefined;
|
|
952
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
953
|
+
fillOpacity?: number | undefined;
|
|
954
|
+
border?: {
|
|
955
|
+
opacity?: number | undefined;
|
|
956
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
957
|
+
width?: number | undefined;
|
|
958
|
+
dashType?: import("../..").ChartBorderDashType | undefined;
|
|
959
|
+
} | undefined;
|
|
960
|
+
label?: {
|
|
961
|
+
contentType?: number | undefined;
|
|
962
|
+
position?: SeriesLabelPosition | undefined;
|
|
963
|
+
format?: string | undefined;
|
|
964
|
+
customValues?: {
|
|
965
|
+
[x: number]: string | undefined;
|
|
966
|
+
} | undefined;
|
|
967
|
+
visible?: boolean | undefined;
|
|
968
|
+
content?: string | undefined;
|
|
969
|
+
fontSize?: number | undefined;
|
|
970
|
+
color?: string | undefined;
|
|
971
|
+
align?: import("../..").LabelAlignEnum | undefined;
|
|
972
|
+
bold?: boolean | undefined;
|
|
973
|
+
family?: string | undefined;
|
|
974
|
+
strikethrough?: boolean | undefined;
|
|
975
|
+
italic?: boolean | undefined;
|
|
976
|
+
underline?: boolean | undefined;
|
|
977
|
+
padAngle?: boolean | undefined;
|
|
978
|
+
axisTitleAlign?: import("../..").AxisAlignEnum | undefined;
|
|
979
|
+
showMaxLabel?: boolean | undefined;
|
|
980
|
+
showMinLabel?: boolean | undefined;
|
|
981
|
+
rotate?: number | undefined;
|
|
982
|
+
} | undefined;
|
|
983
|
+
point?: {
|
|
984
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
985
|
+
size?: number | undefined;
|
|
986
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
987
|
+
} | undefined;
|
|
988
|
+
dataPoints?: {
|
|
989
|
+
[x: number]: {
|
|
990
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
991
|
+
fillOpacity?: number | undefined;
|
|
992
|
+
size?: number | undefined;
|
|
993
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
994
|
+
} | undefined;
|
|
995
|
+
} | undefined;
|
|
996
|
+
waterfall?: /*elided*/ any | undefined;
|
|
997
|
+
name?: string | undefined;
|
|
998
|
+
} | undefined;
|
|
999
|
+
} | undefined;
|
|
1000
|
+
} | undefined;
|
|
1001
|
+
barStyle?: {
|
|
1002
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
1003
|
+
rightYAxis?: boolean | undefined;
|
|
1004
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
1005
|
+
fillOpacity?: number | undefined;
|
|
1006
|
+
border?: {
|
|
1007
|
+
opacity?: number | undefined;
|
|
1008
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
1009
|
+
width?: number | undefined;
|
|
1010
|
+
dashType?: import("../..").ChartBorderDashType | undefined;
|
|
1011
|
+
} | undefined;
|
|
1012
|
+
label?: {
|
|
1013
|
+
contentType?: number | undefined;
|
|
1014
|
+
position?: SeriesLabelPosition | undefined;
|
|
1015
|
+
format?: string | undefined;
|
|
1016
|
+
customValues?: {
|
|
1017
|
+
[x: number]: string | undefined;
|
|
1018
|
+
} | undefined;
|
|
1019
|
+
visible?: boolean | undefined;
|
|
1020
|
+
content?: string | undefined;
|
|
1021
|
+
fontSize?: number | undefined;
|
|
1022
|
+
color?: string | undefined;
|
|
1023
|
+
align?: import("../..").LabelAlignEnum | undefined;
|
|
1024
|
+
bold?: boolean | undefined;
|
|
1025
|
+
family?: string | undefined;
|
|
1026
|
+
strikethrough?: boolean | undefined;
|
|
1027
|
+
italic?: boolean | undefined;
|
|
1028
|
+
underline?: boolean | undefined;
|
|
1029
|
+
padAngle?: boolean | undefined;
|
|
1030
|
+
axisTitleAlign?: import("../..").AxisAlignEnum | undefined;
|
|
1031
|
+
showMaxLabel?: boolean | undefined;
|
|
1032
|
+
showMinLabel?: boolean | undefined;
|
|
1033
|
+
rotate?: number | undefined;
|
|
1034
|
+
} | undefined;
|
|
1035
|
+
point?: {
|
|
1036
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
1037
|
+
size?: number | undefined;
|
|
1038
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
1039
|
+
} | undefined;
|
|
1040
|
+
dataPoints?: {
|
|
1041
|
+
[x: number]: {
|
|
1042
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
1043
|
+
fillOpacity?: number | undefined;
|
|
1044
|
+
size?: number | undefined;
|
|
1045
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
1046
|
+
} | undefined;
|
|
1047
|
+
} | undefined;
|
|
1048
|
+
waterfall?: {
|
|
1049
|
+
positive?: {
|
|
1050
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
1051
|
+
rightYAxis?: boolean | undefined;
|
|
1052
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
1053
|
+
fillOpacity?: number | undefined;
|
|
1054
|
+
border?: {
|
|
1055
|
+
opacity?: number | undefined;
|
|
1056
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
1057
|
+
width?: number | undefined;
|
|
1058
|
+
dashType?: import("../..").ChartBorderDashType | undefined;
|
|
1059
|
+
} | undefined;
|
|
1060
|
+
label?: {
|
|
1061
|
+
contentType?: number | undefined;
|
|
1062
|
+
position?: SeriesLabelPosition | undefined;
|
|
1063
|
+
format?: string | undefined;
|
|
1064
|
+
customValues?: {
|
|
1065
|
+
[x: number]: string | undefined;
|
|
1066
|
+
} | undefined;
|
|
1067
|
+
visible?: boolean | undefined;
|
|
1068
|
+
content?: string | undefined;
|
|
1069
|
+
fontSize?: number | undefined;
|
|
1070
|
+
color?: string | undefined;
|
|
1071
|
+
align?: import("../..").LabelAlignEnum | undefined;
|
|
1072
|
+
bold?: boolean | undefined;
|
|
1073
|
+
family?: string | undefined;
|
|
1074
|
+
strikethrough?: boolean | undefined;
|
|
1075
|
+
italic?: boolean | undefined;
|
|
1076
|
+
underline?: boolean | undefined;
|
|
1077
|
+
padAngle?: boolean | undefined;
|
|
1078
|
+
axisTitleAlign?: import("../..").AxisAlignEnum | undefined;
|
|
1079
|
+
showMaxLabel?: boolean | undefined;
|
|
1080
|
+
showMinLabel?: boolean | undefined;
|
|
1081
|
+
rotate?: number | undefined;
|
|
1082
|
+
} | undefined;
|
|
1083
|
+
point?: {
|
|
1084
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
1085
|
+
size?: number | undefined;
|
|
1086
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
1087
|
+
} | undefined;
|
|
1088
|
+
dataPoints?: {
|
|
1089
|
+
[x: number]: {
|
|
1090
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
1091
|
+
fillOpacity?: number | undefined;
|
|
1092
|
+
size?: number | undefined;
|
|
1093
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
1094
|
+
} | undefined;
|
|
1095
|
+
} | undefined;
|
|
1096
|
+
waterfall?: /*elided*/ any | undefined;
|
|
1097
|
+
name?: string | undefined;
|
|
1098
|
+
} | undefined;
|
|
1099
|
+
negative?: {
|
|
1100
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
1101
|
+
rightYAxis?: boolean | undefined;
|
|
1102
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
1103
|
+
fillOpacity?: number | undefined;
|
|
1104
|
+
border?: {
|
|
1105
|
+
opacity?: number | undefined;
|
|
1106
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
1107
|
+
width?: number | undefined;
|
|
1108
|
+
dashType?: import("../..").ChartBorderDashType | undefined;
|
|
1109
|
+
} | undefined;
|
|
1110
|
+
label?: {
|
|
1111
|
+
contentType?: number | undefined;
|
|
1112
|
+
position?: SeriesLabelPosition | undefined;
|
|
1113
|
+
format?: string | undefined;
|
|
1114
|
+
customValues?: {
|
|
1115
|
+
[x: number]: string | undefined;
|
|
1116
|
+
} | undefined;
|
|
1117
|
+
visible?: boolean | undefined;
|
|
1118
|
+
content?: string | undefined;
|
|
1119
|
+
fontSize?: number | undefined;
|
|
1120
|
+
color?: string | undefined;
|
|
1121
|
+
align?: import("../..").LabelAlignEnum | undefined;
|
|
1122
|
+
bold?: boolean | undefined;
|
|
1123
|
+
family?: string | undefined;
|
|
1124
|
+
strikethrough?: boolean | undefined;
|
|
1125
|
+
italic?: boolean | undefined;
|
|
1126
|
+
underline?: boolean | undefined;
|
|
1127
|
+
padAngle?: boolean | undefined;
|
|
1128
|
+
axisTitleAlign?: import("../..").AxisAlignEnum | undefined;
|
|
1129
|
+
showMaxLabel?: boolean | undefined;
|
|
1130
|
+
showMinLabel?: boolean | undefined;
|
|
1131
|
+
rotate?: number | undefined;
|
|
1132
|
+
} | undefined;
|
|
1133
|
+
point?: {
|
|
1134
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
1135
|
+
size?: number | undefined;
|
|
1136
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
1137
|
+
} | undefined;
|
|
1138
|
+
dataPoints?: {
|
|
1139
|
+
[x: number]: {
|
|
1140
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
1141
|
+
fillOpacity?: number | undefined;
|
|
1142
|
+
size?: number | undefined;
|
|
1143
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
1144
|
+
} | undefined;
|
|
1145
|
+
} | undefined;
|
|
1146
|
+
waterfall?: /*elided*/ any | undefined;
|
|
1147
|
+
name?: string | undefined;
|
|
1148
|
+
} | undefined;
|
|
1149
|
+
subtotal?: {
|
|
1150
|
+
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
1151
|
+
rightYAxis?: boolean | undefined;
|
|
1152
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
1153
|
+
fillOpacity?: number | undefined;
|
|
1154
|
+
border?: {
|
|
1155
|
+
opacity?: number | undefined;
|
|
1156
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
1157
|
+
width?: number | undefined;
|
|
1158
|
+
dashType?: import("../..").ChartBorderDashType | undefined;
|
|
1159
|
+
} | undefined;
|
|
1160
|
+
label?: {
|
|
1161
|
+
contentType?: number | undefined;
|
|
1162
|
+
position?: SeriesLabelPosition | undefined;
|
|
1163
|
+
format?: string | undefined;
|
|
1164
|
+
customValues?: {
|
|
1165
|
+
[x: number]: string | undefined;
|
|
1166
|
+
} | undefined;
|
|
1167
|
+
visible?: boolean | undefined;
|
|
1168
|
+
content?: string | undefined;
|
|
1169
|
+
fontSize?: number | undefined;
|
|
1170
|
+
color?: string | undefined;
|
|
1171
|
+
align?: import("../..").LabelAlignEnum | undefined;
|
|
1172
|
+
bold?: boolean | undefined;
|
|
1173
|
+
family?: string | undefined;
|
|
1174
|
+
strikethrough?: boolean | undefined;
|
|
1175
|
+
italic?: boolean | undefined;
|
|
1176
|
+
underline?: boolean | undefined;
|
|
1177
|
+
padAngle?: boolean | undefined;
|
|
1178
|
+
axisTitleAlign?: import("../..").AxisAlignEnum | undefined;
|
|
1179
|
+
showMaxLabel?: boolean | undefined;
|
|
1180
|
+
showMinLabel?: boolean | undefined;
|
|
1181
|
+
rotate?: number | undefined;
|
|
1182
|
+
} | undefined;
|
|
1183
|
+
point?: {
|
|
1184
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
1185
|
+
size?: number | undefined;
|
|
1186
|
+
color?: import("@univerjs/core").Nullable<string>;
|
|
1187
|
+
} | undefined;
|
|
1188
|
+
dataPoints?: {
|
|
1189
|
+
[x: number]: {
|
|
1190
|
+
color?: import("@univerjs/core").Nullable<ChartColor>;
|
|
1191
|
+
fillOpacity?: number | undefined;
|
|
1192
|
+
size?: number | undefined;
|
|
1193
|
+
shape?: import("../..").LinePointShape | undefined;
|
|
1194
|
+
} | undefined;
|
|
1195
|
+
} | undefined;
|
|
1196
|
+
waterfall?: /*elided*/ any | undefined;
|
|
1197
|
+
name?: string | undefined;
|
|
1198
|
+
} | undefined;
|
|
1199
|
+
} | undefined;
|
|
1200
|
+
} | undefined;
|
|
1201
|
+
includeZeroValues?: boolean | undefined;
|
|
1202
|
+
} | undefined;
|
|
1203
|
+
heatmap?: {
|
|
1204
|
+
visualMapType?: "continuous" | "piecewise" | undefined;
|
|
1205
|
+
max?: number | undefined;
|
|
1206
|
+
min?: number | undefined;
|
|
1207
|
+
unit?: string | undefined;
|
|
1208
|
+
label?: {
|
|
1209
|
+
contentType?: number | undefined;
|
|
1210
|
+
position?: SeriesLabelPosition | undefined;
|
|
1211
|
+
format?: string | undefined;
|
|
1212
|
+
customValues?: {
|
|
1213
|
+
[x: number]: string | undefined;
|
|
1214
|
+
} | undefined;
|
|
1215
|
+
visible?: boolean | undefined;
|
|
1216
|
+
content?: string | undefined;
|
|
1217
|
+
fontSize?: number | undefined;
|
|
1218
|
+
color?: string | undefined;
|
|
1219
|
+
align?: import("../..").LabelAlignEnum | undefined;
|
|
1220
|
+
bold?: boolean | undefined;
|
|
1221
|
+
family?: string | undefined;
|
|
1222
|
+
strikethrough?: boolean | undefined;
|
|
1223
|
+
italic?: boolean | undefined;
|
|
1224
|
+
underline?: boolean | undefined;
|
|
1225
|
+
padAngle?: boolean | undefined;
|
|
1226
|
+
axisTitleAlign?: import("../..").AxisAlignEnum | undefined;
|
|
1227
|
+
showMaxLabel?: boolean | undefined;
|
|
1228
|
+
showMinLabel?: boolean | undefined;
|
|
1229
|
+
rotate?: number | undefined;
|
|
1230
|
+
} | undefined;
|
|
1231
|
+
} | undefined;
|
|
1232
|
+
candlestick?: {
|
|
1233
|
+
rising?: {
|
|
1234
|
+
color?: string | undefined;
|
|
1235
|
+
fillOpacity?: number | undefined;
|
|
1236
|
+
border?: {
|
|
1237
|
+
color?: string | undefined;
|
|
1238
|
+
width?: number | undefined;
|
|
1239
|
+
opacity?: number | undefined;
|
|
1240
|
+
} | undefined;
|
|
1241
|
+
hollow?: boolean | undefined;
|
|
1242
|
+
} | undefined;
|
|
1243
|
+
falling?: {
|
|
1244
|
+
color?: string | undefined;
|
|
1245
|
+
fillOpacity?: number | undefined;
|
|
1246
|
+
border?: {
|
|
1247
|
+
color?: string | undefined;
|
|
1248
|
+
width?: number | undefined;
|
|
1249
|
+
opacity?: number | undefined;
|
|
1250
|
+
} | undefined;
|
|
1251
|
+
hollow?: boolean | undefined;
|
|
1252
|
+
} | undefined;
|
|
1253
|
+
doji?: {
|
|
1254
|
+
color?: string | undefined;
|
|
1255
|
+
fillOpacity?: number | undefined;
|
|
1256
|
+
border?: {
|
|
1257
|
+
color?: string | undefined;
|
|
1258
|
+
width?: number | undefined;
|
|
1259
|
+
opacity?: number | undefined;
|
|
1260
|
+
} | undefined;
|
|
1261
|
+
hollow?: boolean | undefined;
|
|
1262
|
+
} | undefined;
|
|
1263
|
+
candleWidth?: number | undefined;
|
|
1264
|
+
} | undefined;
|
|
1265
|
+
histogram?: {
|
|
1266
|
+
binGap?: number | undefined;
|
|
1267
|
+
} | undefined;
|
|
1268
|
+
treemap?: {
|
|
1269
|
+
parentLabelLayout?: import("../..").TreemapParentLabelLayout | undefined;
|
|
1270
|
+
label?: {
|
|
1271
|
+
visible?: boolean | undefined;
|
|
1272
|
+
contentType?: LabelContentType | undefined;
|
|
1273
|
+
color?: string | undefined;
|
|
1274
|
+
fontSize?: number | undefined;
|
|
1275
|
+
bold?: boolean | undefined;
|
|
1276
|
+
italic?: boolean | undefined;
|
|
1277
|
+
family?: string | undefined;
|
|
1278
|
+
format?: string | undefined;
|
|
1279
|
+
} | undefined;
|
|
1280
|
+
} | undefined;
|
|
1281
|
+
sunburst?: {
|
|
1282
|
+
centerLabel?: {
|
|
1283
|
+
visible?: boolean | undefined;
|
|
1284
|
+
color?: string | undefined;
|
|
1285
|
+
fontSize?: number | undefined;
|
|
1286
|
+
bold?: boolean | undefined;
|
|
1287
|
+
italic?: boolean | undefined;
|
|
1288
|
+
family?: string | undefined;
|
|
1289
|
+
format?: string | undefined;
|
|
1290
|
+
} | undefined;
|
|
1291
|
+
label?: {
|
|
1292
|
+
visible?: boolean | undefined;
|
|
1293
|
+
contentType?: LabelContentType | undefined;
|
|
1294
|
+
position?: import("../..").ChartSunburstLabelPosition | undefined;
|
|
1295
|
+
color?: string | undefined;
|
|
1296
|
+
fontSize?: number | undefined;
|
|
1297
|
+
bold?: boolean | undefined;
|
|
1298
|
+
italic?: boolean | undefined;
|
|
1299
|
+
family?: string | undefined;
|
|
1300
|
+
format?: string | undefined;
|
|
1301
|
+
} | undefined;
|
|
1302
|
+
} | undefined;
|
|
1303
|
+
gauge?: {
|
|
1304
|
+
mode?: import("../..").ChartGaugeMode | undefined;
|
|
1305
|
+
scale?: {
|
|
1306
|
+
min?: number | undefined;
|
|
1307
|
+
max?: number | undefined;
|
|
1308
|
+
splitNumber?: number | undefined;
|
|
1309
|
+
} | undefined;
|
|
1310
|
+
angles?: {
|
|
1311
|
+
startAngle?: number | undefined;
|
|
1312
|
+
endAngle?: number | undefined;
|
|
1313
|
+
} | undefined;
|
|
1314
|
+
ranges?: import("../..").IChartGaugeRangeSpec[] | undefined;
|
|
1315
|
+
axisLine?: {
|
|
1316
|
+
visible?: boolean | undefined;
|
|
1317
|
+
width?: number | undefined;
|
|
1318
|
+
color?: string | undefined;
|
|
1319
|
+
} | undefined;
|
|
1320
|
+
axisTick?: {
|
|
1321
|
+
visible?: boolean | undefined;
|
|
1322
|
+
splitNumber?: number | undefined;
|
|
1323
|
+
length?: number | undefined;
|
|
1324
|
+
width?: number | undefined;
|
|
1325
|
+
color?: string | undefined;
|
|
1326
|
+
} | undefined;
|
|
1327
|
+
splitLine?: {
|
|
1328
|
+
visible?: boolean | undefined;
|
|
1329
|
+
length?: number | undefined;
|
|
1330
|
+
width?: number | undefined;
|
|
1331
|
+
color?: string | undefined;
|
|
1332
|
+
} | undefined;
|
|
1333
|
+
axisLabel?: {
|
|
1334
|
+
visible?: boolean | undefined;
|
|
1335
|
+
distance?: number | undefined;
|
|
1336
|
+
color?: string | undefined;
|
|
1337
|
+
fontSize?: number | undefined;
|
|
1338
|
+
bold?: boolean | undefined;
|
|
1339
|
+
italic?: boolean | undefined;
|
|
1340
|
+
family?: string | undefined;
|
|
1341
|
+
format?: string | undefined;
|
|
1342
|
+
} | undefined;
|
|
1343
|
+
pointer?: {
|
|
1344
|
+
visible?: boolean | undefined;
|
|
1345
|
+
length?: number | undefined;
|
|
1346
|
+
width?: number | undefined;
|
|
1347
|
+
color?: string | undefined;
|
|
1348
|
+
shape?: import("../..").ChartGaugePointerShape | undefined;
|
|
1349
|
+
} | undefined;
|
|
1350
|
+
anchor?: {
|
|
1351
|
+
visible?: boolean | undefined;
|
|
1352
|
+
size?: number | undefined;
|
|
1353
|
+
color?: string | undefined;
|
|
1354
|
+
borderColor?: string | undefined;
|
|
1355
|
+
borderWidth?: number | undefined;
|
|
1356
|
+
} | undefined;
|
|
1357
|
+
progress?: {
|
|
1358
|
+
visible?: boolean | undefined;
|
|
1359
|
+
width?: number | undefined;
|
|
1360
|
+
color?: string | undefined;
|
|
1361
|
+
rounded?: boolean | undefined;
|
|
1362
|
+
} | undefined;
|
|
1363
|
+
title?: {
|
|
1364
|
+
visible?: boolean | undefined;
|
|
1365
|
+
offsetY?: number | undefined;
|
|
1366
|
+
color?: string | undefined;
|
|
1367
|
+
fontSize?: number | undefined;
|
|
1368
|
+
bold?: boolean | undefined;
|
|
1369
|
+
italic?: boolean | undefined;
|
|
1370
|
+
family?: string | undefined;
|
|
1371
|
+
} | undefined;
|
|
1372
|
+
detail?: {
|
|
1373
|
+
visible?: boolean | undefined;
|
|
1374
|
+
offsetY?: number | undefined;
|
|
1375
|
+
color?: string | undefined;
|
|
1376
|
+
fontSize?: number | undefined;
|
|
1377
|
+
bold?: boolean | undefined;
|
|
1378
|
+
italic?: boolean | undefined;
|
|
1379
|
+
family?: string | undefined;
|
|
1380
|
+
format?: string | undefined;
|
|
1381
|
+
} | undefined;
|
|
1382
|
+
} | undefined;
|
|
1383
|
+
chord?: {
|
|
1384
|
+
layout?: {
|
|
1385
|
+
startAngle?: number | undefined;
|
|
1386
|
+
clockwise?: boolean | undefined;
|
|
1387
|
+
padAngle?: number | undefined;
|
|
1388
|
+
minAngle?: number | undefined;
|
|
1389
|
+
innerRadiusRatio?: number | undefined;
|
|
1390
|
+
outerRadiusRatio?: number | undefined;
|
|
1391
|
+
} | undefined;
|
|
1392
|
+
node?: {
|
|
1393
|
+
color?: string | undefined;
|
|
1394
|
+
opacity?: number | undefined;
|
|
1395
|
+
borderColor?: string | undefined;
|
|
1396
|
+
borderWidth?: number | undefined;
|
|
1397
|
+
borderType?: import("../..").ChartBorderDashType | undefined;
|
|
1398
|
+
} | undefined;
|
|
1399
|
+
label?: {
|
|
1400
|
+
visible?: boolean | undefined;
|
|
1401
|
+
position?: import("../..").ChartChordLabelPosition | undefined;
|
|
1402
|
+
rotation?: number | undefined;
|
|
1403
|
+
distance?: number | undefined;
|
|
1404
|
+
color?: string | undefined;
|
|
1405
|
+
fontSize?: number | undefined;
|
|
1406
|
+
bold?: boolean | undefined;
|
|
1407
|
+
italic?: boolean | undefined;
|
|
1408
|
+
family?: string | undefined;
|
|
1409
|
+
} | undefined;
|
|
1410
|
+
ribbon?: {
|
|
1411
|
+
color?: import("../..").ChartChordRibbonColorMode | undefined;
|
|
1412
|
+
opacity?: number | undefined;
|
|
1413
|
+
width?: number | undefined;
|
|
1414
|
+
type?: import("../..").ChartBorderDashType | undefined;
|
|
1415
|
+
} | undefined;
|
|
1416
|
+
emphasis?: {
|
|
1417
|
+
focus?: import("../..").ChartChordFocusMode | undefined;
|
|
1418
|
+
} | undefined;
|
|
1419
|
+
} | undefined;
|
|
1420
|
+
};
|
|
1421
|
+
context: IChartContext;
|
|
1422
|
+
dataAggregation: IChartDataAggregation;
|
|
1423
|
+
};
|