@univerjs-pro/sheets-chart-ui 1.0.0-alpha.1 → 1.0.0-alpha.3

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.
Files changed (127) hide show
  1. package/README.md +5 -3
  2. package/lib/cjs/index.js +1 -1
  3. package/lib/cjs/locale/ar-SA.js +1 -1
  4. package/lib/cjs/locale/ca-ES.js +1 -1
  5. package/lib/cjs/locale/de-DE.js +1 -1
  6. package/lib/cjs/locale/en-US.js +1 -1
  7. package/lib/cjs/locale/es-ES.js +1 -1
  8. package/lib/cjs/locale/fa-IR.js +1 -1
  9. package/lib/cjs/locale/fr-FR.js +1 -1
  10. package/lib/cjs/locale/id-ID.js +1 -1
  11. package/lib/cjs/locale/it-IT.js +1 -1
  12. package/lib/cjs/locale/ja-JP.js +1 -1
  13. package/lib/cjs/locale/ko-KR.js +1 -1
  14. package/lib/cjs/locale/pl-PL.js +1 -1
  15. package/lib/cjs/locale/pt-BR.js +1 -1
  16. package/lib/cjs/locale/ru-RU.js +1 -1
  17. package/lib/cjs/locale/sk-SK.js +1 -1
  18. package/lib/cjs/locale/vi-VN.js +1 -1
  19. package/lib/cjs/locale/zh-CN.js +1 -1
  20. package/lib/cjs/locale/zh-HK.js +1 -1
  21. package/lib/cjs/locale/zh-TW.js +1 -1
  22. package/lib/es/index.js +1 -1
  23. package/lib/es/locale/ar-SA.js +1 -1
  24. package/lib/es/locale/ca-ES.js +1 -1
  25. package/lib/es/locale/de-DE.js +1 -1
  26. package/lib/es/locale/en-US.js +1 -1
  27. package/lib/es/locale/es-ES.js +1 -1
  28. package/lib/es/locale/fa-IR.js +1 -1
  29. package/lib/es/locale/fr-FR.js +1 -1
  30. package/lib/es/locale/id-ID.js +1 -1
  31. package/lib/es/locale/it-IT.js +1 -1
  32. package/lib/es/locale/ja-JP.js +1 -1
  33. package/lib/es/locale/ko-KR.js +1 -1
  34. package/lib/es/locale/pl-PL.js +1 -1
  35. package/lib/es/locale/pt-BR.js +1 -1
  36. package/lib/es/locale/ru-RU.js +1 -1
  37. package/lib/es/locale/sk-SK.js +1 -1
  38. package/lib/es/locale/vi-VN.js +1 -1
  39. package/lib/es/locale/zh-CN.js +1 -1
  40. package/lib/es/locale/zh-HK.js +1 -1
  41. package/lib/es/locale/zh-TW.js +1 -1
  42. package/lib/index.css +3 -127
  43. package/lib/index.js +1 -1
  44. package/lib/locale/ar-SA.js +1 -1
  45. package/lib/locale/ca-ES.js +1 -1
  46. package/lib/locale/de-DE.js +1 -1
  47. package/lib/locale/en-US.js +1 -1
  48. package/lib/locale/es-ES.js +1 -1
  49. package/lib/locale/fa-IR.js +1 -1
  50. package/lib/locale/fr-FR.js +1 -1
  51. package/lib/locale/id-ID.js +1 -1
  52. package/lib/locale/it-IT.js +1 -1
  53. package/lib/locale/ja-JP.js +1 -1
  54. package/lib/locale/ko-KR.js +1 -1
  55. package/lib/locale/pl-PL.js +1 -1
  56. package/lib/locale/pt-BR.js +1 -1
  57. package/lib/locale/ru-RU.js +1 -1
  58. package/lib/locale/sk-SK.js +1 -1
  59. package/lib/locale/vi-VN.js +1 -1
  60. package/lib/locale/zh-CN.js +1 -1
  61. package/lib/locale/zh-HK.js +1 -1
  62. package/lib/locale/zh-TW.js +1 -1
  63. package/lib/types/commands/commands/focused-chart.command.d.ts +9 -0
  64. package/lib/types/commands/operations/open-chart-panel-operation.d.ts +2 -0
  65. package/lib/types/config/config.d.ts +6 -0
  66. package/lib/types/controllers/chart-element-float-menu.controller.d.ts +30 -0
  67. package/lib/types/controllers/chart-render.controller.d.ts +4 -1
  68. package/lib/types/controllers/ui.controller.d.ts +16 -3
  69. package/lib/types/hooks.d.ts +2 -4
  70. package/lib/types/index.d.ts +6 -2
  71. package/lib/types/locale/en-US.d.ts +2 -0
  72. package/lib/types/menu/chart-context-menu.d.ts +7 -0
  73. package/lib/types/plugin.d.ts +5 -3
  74. package/lib/types/services/chart-content-layout.d.ts +35 -0
  75. package/lib/types/services/chart-element-popup-anchor.d.ts +10 -0
  76. package/lib/types/services/chart-element-selection.d.ts +9 -0
  77. package/lib/types/services/chart-image-rect.d.ts +18 -0
  78. package/lib/types/services/chart-panel-route.d.ts +20 -0
  79. package/lib/types/services/chart-render.service.d.ts +47 -10
  80. package/lib/types/services/chart-snapshot-store.service.d.ts +18 -0
  81. package/lib/types/services/sheet-chart-host.d.ts +56 -0
  82. package/lib/types/services/sheet-image-chart-host.d.ts +24 -0
  83. package/lib/types/services/sheets-chart-host-provider.service.d.ts +37 -13
  84. package/lib/types/services/sheets-chart-ui.service.d.ts +50 -11
  85. package/lib/types/views/chart-edit-panel/Options.d.ts +26 -85
  86. package/lib/types/views/chart-edit-panel/RadarChartOptionsEdit.d.ts +0 -2
  87. package/lib/types/views/chart-edit-panel/data-tab-panel/BubbleDataEdit.d.ts +1 -6
  88. package/lib/types/views/chart-edit-panel/data-tab-panel/DataTabPanel.d.ts +0 -3
  89. package/lib/types/views/chart-edit-panel/style-tab-panel/AxisOptionsEdit.d.ts +0 -2
  90. package/lib/types/views/chart-edit-panel/style-tab-panel/DataLabelOptions.d.ts +1 -1
  91. package/lib/types/views/chart-edit-panel/style-tab-panel/ParetoLine.d.ts +0 -2
  92. package/lib/types/views/chart-edit-panel/style-tab-panel/PieChartStyleEdit.d.ts +0 -2
  93. package/lib/types/views/chart-edit-panel/style-tab-panel/RelationEdit.d.ts +1 -6
  94. package/lib/types/views/chart-edit-panel/style-tab-panel/TrendLineEdit.d.ts +1 -6
  95. package/lib/types/views/chart-edit-panel/style-tab-panel/WaterfallSeriesEdit.d.ts +1 -6
  96. package/lib/types/views/chart-edit-panel/style-tab-panel/WordCloudShapeSelector.d.ts +1 -6
  97. package/lib/types/views/chart-edit-panel/style-tab-panel/grid-line-and-tick-options/GridLineAndTickOptions.d.ts +0 -2
  98. package/lib/types/views/chart-edit-panel/style-tab-panel/series-style-edit/CombinationChartTypeSelect.d.ts +0 -2
  99. package/lib/types/views/chart-edit-panel/style-tab-panel/series-style-edit/SeriesStyleEdit.d.ts +1 -2
  100. package/lib/types/views/chart-edit-panel/style-tab-panel/series-style-edit/use-series-chart-type.d.ts +2 -8
  101. package/lib/umd/index.js +1 -1
  102. package/lib/umd/locale/ar-SA.js +1 -1
  103. package/lib/umd/locale/ca-ES.js +1 -1
  104. package/lib/umd/locale/de-DE.js +1 -1
  105. package/lib/umd/locale/en-US.js +1 -1
  106. package/lib/umd/locale/es-ES.js +1 -1
  107. package/lib/umd/locale/fa-IR.js +1 -1
  108. package/lib/umd/locale/fr-FR.js +1 -1
  109. package/lib/umd/locale/id-ID.js +1 -1
  110. package/lib/umd/locale/it-IT.js +1 -1
  111. package/lib/umd/locale/ja-JP.js +1 -1
  112. package/lib/umd/locale/ko-KR.js +1 -1
  113. package/lib/umd/locale/pl-PL.js +1 -1
  114. package/lib/umd/locale/pt-BR.js +1 -1
  115. package/lib/umd/locale/ru-RU.js +1 -1
  116. package/lib/umd/locale/sk-SK.js +1 -1
  117. package/lib/umd/locale/vi-VN.js +1 -1
  118. package/lib/umd/locale/zh-CN.js +1 -1
  119. package/lib/umd/locale/zh-HK.js +1 -1
  120. package/lib/umd/locale/zh-TW.js +1 -1
  121. package/package.json +21 -18
  122. package/lib/types/views/chart-edit-panel/color-picker-control/index.d.ts +0 -6
  123. package/lib/types/views/chart-edit-panel/dropdown-menu/index.d.ts +0 -9
  124. package/lib/types/views/chart-edit-panel/font-format-bar/FontFormatBar.d.ts +0 -16
  125. package/lib/types/views/chart-edit-panel/font-format-bar/index.d.ts +0 -1
  126. package/lib/types/views/chart-edit-panel/use-translated-options.d.ts +0 -6
  127. package/lib/types/views/print-chart/index.d.ts +0 -10
@@ -1 +1 @@
1
- const _0x2e85aa=_0x39ec;function _0x39ec(_0x4babe5,_0x451caf){_0x4babe5=_0x4babe5-0x184;const _0x334c53=_0x334c();let _0x39ec54=_0x334c53[_0x4babe5];return _0x39ec54;}(function(_0x314892,_0x332870){const _0x18b390=_0x39ec,_0x2d3d3d=_0x314892();while(!![]){try{const _0x2c53a=parseInt(_0x18b390(0x1ad))/0x1*(parseInt(_0x18b390(0x226))/0x2)+-parseInt(_0x18b390(0x1a0))/0x3*(parseInt(_0x18b390(0x23f))/0x4)+parseInt(_0x18b390(0x190))/0x5*(-parseInt(_0x18b390(0x20c))/0x6)+-parseInt(_0x18b390(0x19d))/0x7+parseInt(_0x18b390(0x19a))/0x8*(-parseInt(_0x18b390(0x1cc))/0x9)+parseInt(_0x18b390(0x20e))/0xa*(-parseInt(_0x18b390(0x1fa))/0xb)+parseInt(_0x18b390(0x1b9))/0xc;if(_0x2c53a===_0x332870)break;else _0x2d3d3d['push'](_0x2d3d3d['shift']());}catch(_0x48e828){_0x2d3d3d['push'](_0x2d3d3d['shift']());}}}(_0x334c,0x53821));function _0x334c(){const _0xd345a9=['Biểu\x20đồ\x20Sankey','Đường\x20lưới','Trái','Biểu\x20đồ\x20cổ\x20phiếu','Giá\x20trị\x20âm','Danh\x20mục','Khoảng\x20trống','Hậu\x20tố\x20giá\x20trị','Chuỗi\x20tỷ\x20lệ\x20tích\x20lũy','Loại\x20đường\x20xu\x20hướng','Phạm\x20vi\x20dữ\x20liệu','Xếp\x20chồng','Thiết\x20lập\x20định\x20dạng\x20nhãn','Dùng\x20giá\x20trị\x20làm\x20kích\x20thước\x20nút','Biểu\x20đồ\x20nhiệt','Màu','Xóa\x20biểu\x20đồ','Phần\x20trăm','Trên\x20cùng','Góc\x20đệm','Điểm\x20dữ\x20liệu','Tùy\x20chỉnh','Mượt','5WIrlfu','(Trống)','Biểu\x20đồ\x20diện\x20tích','Hình\x20tam\x20giác\x20trống','Đường\x20xu\x20hướng','Hình\x20chữ\x20nhật\x20bo\x20góc','Tỷ\x20lệ\x20tích\x20lũy','Thêm\x20đường\x20xu\x20hướng','Biểu\x20đồ\x20thanh\x20chồng\x20phần\x20trăm','{0}\x20độ\x20dày','24KLxwhf','Hiển\x20thị\x20nhãn\x20dữ\x20liệu','Vị\x20trí','358421xsIetF','Nửa\x20bánh','Bật\x20hiệu\x20ứng\x20xuất\x20hiện\x20khi\x20chọn','2157qCxeIt','Chú\x20thích\x20tổng\x20phụ','Kiểu\x20xếp\x20chồng','Hình\x20vuông\x20trống','Định\x20dạng\x20ngày\x20hiển\x20thị\x20số\x20sê-ri\x20ngày\x20giờ\x20dưới\x20dạng\x20giá\x20trị\x20ngày\x20tháng.','Kiểu\x20biểu\x20đồ','Biểu\x20đồ\x20radar','Kiểu\x20ngày\x20tháng','Đổ\x20màu','Kết\x20nối\x20điểm\x20dữ\x20liệu\x20bằng\x20đường\x20thẳng','Trục\x20X','Viền','Màu\x20viền\x20biểu\x20đồ','27QzLtiA','Giá\x20trị\x20nhỏ\x20nhất','Cài\x20đặt\x20khác','Kích\x20thước\x20bong\x20bóng','Đường\x20chỉ\x20số','Bậc\x20của\x20đa\x20thức','Loạt','Đóng','{0}\x20độ\x20mờ','Tất\x20cả\x20các\x20loạt','Tổng\x20phụ','Chung','17341752bJXFPH','Mũi\x20tên','Biểu\x20đồ\x20tròn','Trung\x20bình\x20động','{0}\x20hình\x20dạng','Hình\x20tròn\x20trống','Danh\x20mục\x20{0}','Hình\x20chữ\x20nhật','Loại\x20bố\x20cục','Đặt\x20lại','Trung\x20vị','Bên\x20ngoài','Mũi\x20tên\x20trống','Word\x20cloud','Loại\x20đường\x20nét\x20đứt\x20của\x20đường\x20xu\x20hướng','Trục\x20đứng\x20phải','Văn\x20bản\x20nhãn','Loại\x20biểu\x20đồ','Căn\x20tiêu\x20đề\x20trục','1972377IxJHmR','Đồng\x20ý','Tuần\x20tự','Hình\x20tam\x20giác','Thiết\x20lập','Chuỗi\x20biểu\x20đồ\x20cột','Tiêu\x20đề\x20phụ','Hình\x20tròn','Chèn\x20biểu\x20đồ','Liền','Đảo\x20thứ\x20tự\x20trục','Biểu\x20đồ\x20Sankey\x20không\x20thể\x20chứa\x20dữ\x20liệu\x20vòng\x20lặp','Lực\x20tác\x20động','Biểu\x20đồ\x20phân\x20tán','Đường\x20lưới\x20chính','Trục','Phạm\x20vi\x20này\x20đã\x20được\x20bảo\x20vệ,\x20hiện\x20không\x20có\x20quyền\x20chỉnh\x20sửa.\x20Nếu\x20cần\x20chỉnh\x20sửa,\x20vui\x20lòng\x20liên\x20hệ\x20với\x20ngườ\x20i\x20tạo.','Biểu\x20đồ\x20quan\x20hệ','Hiển\x20thị\x20công\x20thức','Phần\x20trăm\x20chồng','Hiển\x20thị\x20tổng\x20phụ','Đường\x20lưới\x20và\x20dấu','Tên\x20đường\x20xu\x20hướng','Trục\x20trái','Căn\x20trái','Định\x20dạng\x20tiêu\x20đề','Điểm','Không','Hình\x20thoi','Trục\x20ngày\x20chỉ\x20khả\x20dụng\x20khi\x20tất\x20cả\x20dữ\x20liệu\x20đều\x20có\x20định\x20dạng\x20ngày','Chữ\x20số\x20cố\x20định','{0}\x20màu','Nhãn\x20bong\x20bóng','Chấm','Chế\x20độ\x20chọn\x20chú\x20giải','Tự\x20động','Giữa','Tiền\x20tệ','Hình\x20dạng\x20word\x20cloud','Biểu\x20đồ\x20diện\x20tích\x20chồng\x20phần\x20trăm','Loạt\x20{0}','Lặp\x20lại\x20word\x20cloud','Màu\x20đường\x20xu\x20hướng','Giá\x20trị\x20dương','Chú\x20thích\x20giá\x20trị\x20dương','Ngày\x20tháng','13541MAvpxV','Giá\x20trị\x20chỉ\x20số','Dấu\x20chấm\x20chính','Đa\x20thức','Nhãn\x20dữ\x20liệu','Loại\x20đường','Bánh\x20hồng','Tổng\x20hợp','Phần\x20tư\x20thứ\x20nhất','Căn\x20phải','Dưới\x20cùng','Trục\x20ngang','Vị\x20trí\x20tiêu\x20đề','Tiêu\x20đề\x20trục\x20Y','Hình\x20ghim\x20trống','Định\x20dạng\x20chung\x20không\x20áp\x20dụng\x20định\x20dạng\x20số\x20cụ\x20thể\x20nào.','Loại\x20đường\x20chỉ\x20số','Biểu\x20đồ\x20cột','3124722FKISiN','Biểu\x20đồ\x20thác\x20nước','490ilQOEN','Trục\x20đứng','Tiêu\x20đề\x20trục\x20Y\x20phải','Tùy\x20chọn\x20bố\x20cục\x20lực\x20tác\x20động','Sử\x20dụng\x20{0}\x20như\x20là\x20danh\x20mục','Tỷ\x20lệ\x20giá\x20trị\x20bánh','Chồng','Tiêu\x20đề\x20trục\x20X','Bên\x20trong','Nguồn\x20dữ\x20liệu\x20cho\x20biểu\x20đồ\x20quan\x20hệ\x20là\x20ma\x20trận\x20đồng\x20từ\x20với\x20cột\x20loại\x20bổ\x20sung\x20ở\x20cột\x20thứ\x20hai','Biểu\x20đồ\x20phễu','Định\x20dạng\x20phần\x20nghìn\x20dùng\x20cho\x20các\x20số\x20thông\x20thường;\x20định\x20dạng\x20tiền\x20tệ\x20và\x20kế\x20toán\x20cung\x20cấp\x20các\x20tùy\x20chọn\x20chuyên\x20biệt\x20cho\x20giá\x20trị\x20tài\x20chính.','Số\x20chữ\x20số\x20thập\x20phân','Hình\x20chữ\x20nhật\x20bo\x20góc\x20trống','Hình\x20ghim','Hình\x20vuông','Lực\x20đẩy','Tùy\x20chọn\x20trục','Hiển\x20thị\x20R\x20bình\x20phương','Kế\x20toán','Biểu\x20đồ\x20đường','Định\x20dạng','Đường','Các\x20loại\x20định\x20dạng','36942CEkIgr','Hàm\x20mũ','Sử\x20dụng\x20trục\x20ngày','Không\x20có\x20dữ\x20liệu\x20để\x20hiển\x20thị.','Tối\x20thiểu','Tiêu\x20đề','Sử\x20dụng\x20giá\x20trị\x20tuyệt\x20đối','Hình\x20thoi\x20trống','Biểu\x20đồ\x20donut','Kết\x20thúc','Độ\x20dày\x20đường\x20xu\x20hướng','Hiển\x20thị\x20ô\x20trống\x20như','Màu\x20nền','Sử\x20dụng\x20trục\x20Y\x20phải','Biên\x20tập\x20biểu\x20đồ','Phần\x20nghìn','Phạm\x20vi\x20bản\x20đồ\x20trực\x20quan','Gạch','Thêm\x20điểm\x20dữ\x20liệu','Biểu\x20đồ\x20bong\x20bóng','Mở\x20bảng\x20điều\x20khiển\x20biểu\x20đồ','Trục\x20phải','Xoay\x20nhãn','Kiểu\x20tổng\x20phụ','Phải','1736GpkCpu','Bắt\x20đầu','Lỗ\x20bánh\x20rán','Mục\x20thứ\x20{0}','Khoảng\x20cách\x20giữa\x20các\x20nút','{0}\x20kích\x20thước','Loại\x20tiền\x20tệ','R\x20bình\x20phương'];_0x334c=function(){return _0xd345a9;};return _0x334c();}const e={'sheets-chart-ui':{'permission':{'editErr':_0x2e85aa(0x1dc)},'insertChart':_0x2e85aa(0x1d4),'editChart':_0x2e85aa(0x234),'openChartPanel':_0x2e85aa(0x23a),'deleteChart':_0x2e85aa(0x189),'hideChartPanel':'Ẩn\x20bảng\x20điều\x20khiển\x20biểu\x20đồ','setupChart':_0x2e85aa(0x1d0),'customChart':_0x2e85aa(0x18e),'default':'Mặc\x20định','reset':_0x2e85aa(0x1c2),'chartType':_0x2e85aa(0x1ca),'themes':'Chủ\x20đề','dataRange':_0x2e85aa(0x251),'stack':'Chồng','category':_0x2e85aa(0x24c),'aggregate':_0x2e85aa(0x201),'allSeries':_0x2e85aa(0x1b6),'series':_0x2e85aa(0x1b3),'addSeries':'Thêm\x20loạt','moreSettings':_0x2e85aa(0x1af),'min':_0x2e85aa(0x22a),'max':'Tối\x20đa','invalidType':{'gaps':_0x2e85aa(0x24d),'zero':'Không','connectDataPointsWithStraightLines':_0x2e85aa(0x1a9)},'blank':_0x2e85aa(0x191),'seriesBlock':{'format':_0x2e85aa(0x223),'dataPointStyle':'Kiểu\x20điểm\x20dữ\x20liệu'},'backgroundColor':_0x2e85aa(0x232),'chartBorderColor':_0x2e85aa(0x1ac),'titles':{'title':_0x2e85aa(0x22b),'mainTitle':'Tiêu\x20đề\x20chính','subTitle':_0x2e85aa(0x1d2),'xAxisTitle':_0x2e85aa(0x215),'yAxisTitle':_0x2e85aa(0x207),'rightYAxisTitle':_0x2e85aa(0x210),'titleFormat':_0x2e85aa(0x1e5),'titleText':'Văn\x20bản\x20tiêu\x20đề','titlePosition':_0x2e85aa(0x206),'titleAlign':_0x2e85aa(0x1cb)},'axisPositionType':{'start':_0x2e85aa(0x240),'center':_0x2e85aa(0x1f0),'end':_0x2e85aa(0x22f)},'gradientFill':'Đổ\x20màu','settingsLabels':{'switchToRowOrColumn':'Chuyển\x20sang\x20hàng\x20hoặc\x20cột','useAsCategoryLabels':_0x2e85aa(0x212),'showEmptyCellsAs':_0x2e85aa(0x231)},'positionType':{'auto':_0x2e85aa(0x1ef),'inside':_0x2e85aa(0x216),'outside':_0x2e85aa(0x1c4),'top':_0x2e85aa(0x18b),'bottom':_0x2e85aa(0x204),'left':_0x2e85aa(0x249),'right':_0x2e85aa(0x23e),'hide':'Ẩn'},'align':{'left':_0x2e85aa(0x1e4),'center':'Căn\x20giữa','right':_0x2e85aa(0x203)},'alignY':{'top':_0x2e85aa(0x18b),'middle':'Giữa','bottom':_0x2e85aa(0x204)},'chartStyle':_0x2e85aa(0x1a5),'chartAndAxisTitles':'Tiêu\x20đề\x20biểu\x20đồ\x20và\x20trục','legend':'Chú\x20giải','legendSelectMode':_0x2e85aa(0x1ee),'legendSelectModeType':{'single':'Chọn\x20một','multiple':'Chọn\x20nhiều','close':_0x2e85aa(0x1b4)},'legendVisualMapType':{'continuous':'Liên\x20tục','piecewise':'Mảnh'},'axes':{'axis':_0x2e85aa(0x1db),'axisOptions':_0x2e85aa(0x21f),'horizontalAxis':_0x2e85aa(0x205),'verticalAxis':_0x2e85aa(0x20f),'rightVerticalAxis':_0x2e85aa(0x1c8),'leftAxis':_0x2e85aa(0x1e3),'rightAxis':_0x2e85aa(0x23b),'useRightAxis':_0x2e85aa(0x233)},'position':_0x2e85aa(0x19c),'dataLabels':_0x2e85aa(0x1fe),'gridlinesAndTicks':_0x2e85aa(0x1e1),'indicatorLine':_0x2e85aa(0x1b1),'indicatorLineType':_0x2e85aa(0x20a),'indicatorLineColor':'Màu\x20đường\x20chỉ\x20số','indicatorLabel':'Nhãn\x20chỉ\x20số','indicatorValue':_0x2e85aa(0x1fb),'shape':{'polygon':'Đa\x20giác','circle':_0x2e85aa(0x1d3),'square':_0x2e85aa(0x21d),'triangle':_0x2e85aa(0x1cf),'diamond':_0x2e85aa(0x1e8),'rect':_0x2e85aa(0x1c0),'roundRect':_0x2e85aa(0x195),'pin':_0x2e85aa(0x21c),'arrow':_0x2e85aa(0x1ba),'none':_0x2e85aa(0x1e7),'emptyCircle':_0x2e85aa(0x1be),'emptySquare':_0x2e85aa(0x1a3),'emptyTriangle':_0x2e85aa(0x193),'emptyDiamond':_0x2e85aa(0x22d),'emptyRect':'Hình\x20chữ\x20nhật\x20trống','emptyRoundRect':_0x2e85aa(0x21b),'emptyPin':_0x2e85aa(0x208),'emptyArrow':_0x2e85aa(0x1c5)},'border':_0x2e85aa(0x1ab),'value':'Giá\x20trị','fill':'Đổ\x20màu','line':_0x2e85aa(0x224),'withOpacity':_0x2e85aa(0x1b5),'withColor':_0x2e85aa(0x1eb),'withThickness':_0x2e85aa(0x199),'withType':'{0}\x20loại','withSize':_0x2e85aa(0x244),'withShape':_0x2e85aa(0x1bd),'withFormat':'{0}\x20định\x20dạng','dataPoint':_0x2e85aa(0x18d),'dataNodeShape':'Hình\x20dạng\x20nút\x20dữ\x20liệu','addDataPoint':_0x2e85aa(0x238),'point':_0x2e85aa(0x1e6),'percentage':_0x2e85aa(0x18a),'lineType':{'line':_0x2e85aa(0x224),'smooth':_0x2e85aa(0x18f),'step':'Bước'},'stackType':{'stack':_0x2e85aa(0x214),'percent':_0x2e85aa(0x1df)},'lineDashType':_0x2e85aa(0x1ff),'dashType':{'solid':_0x2e85aa(0x1d5),'dash':_0x2e85aa(0x237),'dot':_0x2e85aa(0x1ed)},'color':_0x2e85aa(0x188),'gridlines':{'majorGridlines':_0x2e85aa(0x1da),'text':_0x2e85aa(0x248)},'ticks':{'majorTick':_0x2e85aa(0x1fc),'tickPosition':'Vị\x20trí\x20dấu\x20chấm','tickLength':'Chiều\x20dài\x20dấu\x20chấm'},'none':_0x2e85aa(0x1e7),'theIndexItem':_0x2e85aa(0x242),'seriesDefaultName':_0x2e85aa(0x1f4),'categoryDefaultName':_0x2e85aa(0x1bf),'styleEditPanel':{'showLabels':'Hiển\x20thị\x20nhãn','showDataLabels':_0x2e85aa(0x19b),'padAngle':_0x2e85aa(0x18c),'halfPie':_0x2e85aa(0x19e),'rosePie':_0x2e85aa(0x200),'pieValScale':_0x2e85aa(0x213),'pieValSuffix':_0x2e85aa(0x24e),'pieDigitalFixed':_0x2e85aa(0x1ea),'showLabelLine':'Hiển\x20thị\x20đường\x20nhãn','reverseAxisOrder':_0x2e85aa(0x1d6),'showAxisLine':'Hiển\x20thị\x20đường\x20trục','labelPosition':'Vị\x20trí\x20nhãn','labelText':_0x2e85aa(0x1c9),'repeatWordCould':_0x2e85aa(0x1f5),'gap':'Khoảng\x20cách','useAbsValue':_0x2e85aa(0x22c),'labelRotate':'Xoay\x20nhãn','wordCloudShape':_0x2e85aa(0x1f2),'useDateAxis':_0x2e85aa(0x228),'dateAxisTips':_0x2e85aa(0x1e9)},'radar':{'fill':_0x2e85aa(0x1a8)},'doughnutHole':_0x2e85aa(0x241),'msg':{'invalidSource':'Nguồn\x20dữ\x20liệu\x20biểu\x20đồ\x20phải\x20có\x20nhiều\x20hơn\x201\x20hàng\x20và\x201\x20cột.','emptyTips':_0x2e85aa(0x229),'sankeyCircularTips':_0x2e85aa(0x1d7)},'cloud':{'title':_0x2e85aa(0x1c6),'word':'Từ','frequency':'Tần\x20suất'},'trendline':{'name':_0x2e85aa(0x194),'displayName':'Tên\x20đường\x20xu\x20hướng','addTrendLine':_0x2e85aa(0x197),'trendlineType':_0x2e85aa(0x250),'trendlineName':_0x2e85aa(0x1e2),'trendlineColor':_0x2e85aa(0x1f6),'trendlineThickness':_0x2e85aa(0x230),'trendlineDashType':_0x2e85aa(0x1c7),'exp':_0x2e85aa(0x227),'linear':'Tuyến\x20tính','log':'Logarit','pow':'Lũy\x20thừa','movingAvg':_0x2e85aa(0x1bc),'poly':_0x2e85aa(0x1fd),'order':_0x2e85aa(0x1b2),'period':'Chu\x20kỳ\x20trung\x20bình\x20động','showFormula':_0x2e85aa(0x1de),'showR2':_0x2e85aa(0x220),'formula':'Công\x20thức','r2':_0x2e85aa(0x246)},'bubble':{'xAxis':_0x2e85aa(0x1aa),'yAxis':'Trục\x20Y','size':_0x2e85aa(0x1b0),'label':_0x2e85aa(0x1ec),'emptyTips':'Biểu\x20đồ\x20bong\x20bóng\x20yêu\x20cầu\x20ít\x20nhất\x202\x20cột:\x20trục\x20X,\x20trục\x20Y'},'relation':{'title':_0x2e85aa(0x1dd),'auto':_0x2e85aa(0x1ef),'circular':_0x2e85aa(0x1d3),'force':_0x2e85aa(0x1d8),'useValueAsSymbolSize':_0x2e85aa(0x186),'layoutType':_0x2e85aa(0x1c1),'forceOptions':_0x2e85aa(0x211),'repulsion':_0x2e85aa(0x21e),'gravity':'Trọng\x20lực','edgeLength':_0x2e85aa(0x243),'rotateLabel':_0x2e85aa(0x23c),'emphasis':_0x2e85aa(0x19f),'emptyTips':_0x2e85aa(0x217)},'waterfall':{'stackType':_0x2e85aa(0x1a2),'arrangement':_0x2e85aa(0x1ce),'stacked':_0x2e85aa(0x184),'positive':_0x2e85aa(0x1f7),'negative':_0x2e85aa(0x24b),'subtotal':_0x2e85aa(0x1b7),'showSubtotal':_0x2e85aa(0x1e0),'positiveStyle':'Kiểu\x20giá\x20trị\x20dương','negativeStyle':'Kiểu\x20giá\x20trị\x20âm','subtotalStyle':_0x2e85aa(0x23d),'positiveLegendText':_0x2e85aa(0x1f8),'negativeLegendText':'Chú\x20thích\x20giá\x20trị\x20âm','subtotalLegendText':_0x2e85aa(0x1a1)},'pareto':{'lineName':_0x2e85aa(0x196),'lineSeries':_0x2e85aa(0x24f),'barSeries':_0x2e85aa(0x1d1)},'visualMapScope':_0x2e85aa(0x236),'boxplot':{'min':_0x2e85aa(0x1ae),'q1':_0x2e85aa(0x202),'median':_0x2e85aa(0x1c3),'q3':'Phần\x20tư\x20thứ\x20ba','max':'Giá\x20trị\x20lớn\x20nhất'},'chartTypes':{'line':_0x2e85aa(0x222),'area':_0x2e85aa(0x192),'areaStacked':'Biểu\x20đồ\x20diện\x20tích\x20chồng','areaPercentStacked':_0x2e85aa(0x1f3),'column':_0x2e85aa(0x20b),'bar':'Biểu\x20đồ\x20thanh','barStacked':'Biểu\x20đồ\x20thanh\x20chồng','barPercentStacked':_0x2e85aa(0x198),'pie':_0x2e85aa(0x1bb),'donut':_0x2e85aa(0x22e),'scatter':_0x2e85aa(0x1d9),'radar':_0x2e85aa(0x1a6),'bubble':_0x2e85aa(0x239),'stock':_0x2e85aa(0x24a),'combination':'Biểu\x20đồ\x20kết\x20hợp','wordCloud':'Biểu\x20đồ\x20word\x20cloud','funnel':_0x2e85aa(0x218),'relation':_0x2e85aa(0x1dd),'waterfall':_0x2e85aa(0x20d),'pareto':'Biểu\x20đồ\x20Pareto','sankey':_0x2e85aa(0x247),'heatmap':_0x2e85aa(0x187),'boxplot':'Biểu\x20đồ\x20hộp'},'dialog':{'numfmt':{'general':_0x2e85aa(0x1b8),'accounting':_0x2e85aa(0x221),'currency':_0x2e85aa(0x1f1),'date':_0x2e85aa(0x1f9),'thousandthPercentile':_0x2e85aa(0x235),'fieldSetting':'Thiết\x20lập\x20trường','formatTypes':_0x2e85aa(0x225),'confirm':_0x2e85aa(0x1cd),'cancel':'Hủy','generalDesc':_0x2e85aa(0x209),'accountingDesc':'Định\x20dạng\x20kế\x20toán\x20căn\x20chỉnh\x20ký\x20hiệu\x20tiền\x20tệ\x20và\x20dấu\x20thập\x20phân\x20theo\x20cột.','currencyDesc':'Định\x20dạng\x20tiền\x20tệ\x20dùng\x20cho\x20các\x20giá\x20trị\x20tài\x20chính\x20chung,\x20trong\x20khi\x20định\x20dạng\x20kế\x20toán\x20căn\x20chỉnh\x20dấu\x20thập\x20phân\x20theo\x20cột\x20giá\x20trị.','dateDesc':_0x2e85aa(0x1a4),'thousandthPercentileDesc':_0x2e85aa(0x219),'decimalPlaces':_0x2e85aa(0x21a),'currencyTypes':_0x2e85aa(0x245),'negativeNumberTypes':'Kiểu\x20số\x20âm','dateTypes':_0x2e85aa(0x1a7)},'setFormat':_0x2e85aa(0x185)}}};export{e as default};
1
+ const _0x2f9429=_0x211e;(function(_0x1e63a7,_0x3b51ff){const _0x2d24eb=_0x211e,_0x3dbbc3=_0x1e63a7();while(!![]){try{const _0x13b1fc=-parseInt(_0x2d24eb(0xe0))/0x1*(parseInt(_0x2d24eb(0x119))/0x2)+-parseInt(_0x2d24eb(0x142))/0x3*(parseInt(_0x2d24eb(0xbf))/0x4)+-parseInt(_0x2d24eb(0xc3))/0x5+parseInt(_0x2d24eb(0xe1))/0x6+parseInt(_0x2d24eb(0xeb))/0x7*(parseInt(_0x2d24eb(0xca))/0x8)+-parseInt(_0x2d24eb(0xea))/0x9*(-parseInt(_0x2d24eb(0xf4))/0xa)+-parseInt(_0x2d24eb(0x100))/0xb;if(_0x13b1fc===_0x3b51ff)break;else _0x3dbbc3['push'](_0x3dbbc3['shift']());}catch(_0x3eb627){_0x3dbbc3['push'](_0x3dbbc3['shift']());}}}(_0x1234,0xe16d5));const e={'sheets-chart-ui':{'permission':{'editErr':_0x2f9429(0x137)},'insertChart':_0x2f9429(0x169),'editChart':_0x2f9429(0xdb),'openChartPanel':_0x2f9429(0xcb),'deleteChart':_0x2f9429(0x122),'exportImage':_0x2f9429(0xf1),'copy':'Sao\x20chép','hideChartPanel':'Ẩn\x20bảng\x20điều\x20khiển\x20biểu\x20đồ','setupChart':_0x2f9429(0x167),'customChart':_0x2f9429(0x155),'default':_0x2f9429(0x10c),'reset':_0x2f9429(0x14c),'chartType':'Loại\x20biểu\x20đồ','themes':_0x2f9429(0x13e),'dataRange':'Phạm\x20vi\x20dữ\x20liệu','stack':_0x2f9429(0xd3),'category':_0x2f9429(0x157),'aggregate':_0x2f9429(0x136),'allSeries':_0x2f9429(0xc5),'series':_0x2f9429(0x10a),'addSeries':_0x2f9429(0x150),'moreSettings':_0x2f9429(0xe9),'min':_0x2f9429(0x16b),'max':_0x2f9429(0x131),'invalidType':{'gaps':_0x2f9429(0x10f),'zero':_0x2f9429(0xdd),'connectDataPointsWithStraightLines':_0x2f9429(0xed)},'blank':_0x2f9429(0x16d),'seriesBlock':{'format':_0x2f9429(0x11f),'dataPointStyle':'Kiểu\x20điểm\x20dữ\x20liệu'},'backgroundColor':_0x2f9429(0xc2),'chartBorderColor':_0x2f9429(0x168),'titles':{'title':_0x2f9429(0xdc),'mainTitle':_0x2f9429(0x163),'subTitle':_0x2f9429(0x11e),'xAxisTitle':_0x2f9429(0x183),'yAxisTitle':_0x2f9429(0x134),'rightYAxisTitle':'Tiêu\x20đề\x20trục\x20Y\x20phải','titleFormat':_0x2f9429(0x144),'titleText':_0x2f9429(0xd4),'titlePosition':_0x2f9429(0x110),'titleAlign':_0x2f9429(0xd9)},'axisPositionType':{'start':_0x2f9429(0xfe),'center':_0x2f9429(0x166),'end':_0x2f9429(0xda)},'gradientFill':_0x2f9429(0xc1),'settingsLabels':{'switchToRowOrColumn':_0x2f9429(0x123),'useAsCategoryLabels':'Sử\x20dụng\x20{0}\x20như\x20là\x20danh\x20mục','showEmptyCellsAs':_0x2f9429(0x11a)},'positionType':{'auto':_0x2f9429(0xc8),'inside':'Bên\x20trong','outside':'Bên\x20ngoài','top':_0x2f9429(0x12b),'bottom':'Dưới\x20cùng','left':_0x2f9429(0xcd),'right':_0x2f9429(0x139),'hide':'Ẩn'},'align':{'left':'Căn\x20trái','center':_0x2f9429(0xf6),'right':_0x2f9429(0x103)},'alignY':{'top':_0x2f9429(0x12b),'middle':'Giữa','bottom':_0x2f9429(0xef)},'chartStyle':_0x2f9429(0x160),'chartAndAxisTitles':'Tiêu\x20đề\x20biểu\x20đồ\x20và\x20trục','legend':_0x2f9429(0xe3),'legendSelectMode':'Chế\x20độ\x20chọn\x20chú\x20giải','legendSelectModeType':{'single':_0x2f9429(0x132),'multiple':_0x2f9429(0xf0),'close':'Đóng'},'legendVisualMapType':{'continuous':_0x2f9429(0x16a),'piecewise':_0x2f9429(0xd1)},'axes':{'axis':'Trục','axisOptions':_0x2f9429(0xc7),'horizontalAxis':_0x2f9429(0xe4),'verticalAxis':_0x2f9429(0x177),'rightVerticalAxis':_0x2f9429(0x135),'leftAxis':_0x2f9429(0x158),'rightAxis':_0x2f9429(0xc4),'useRightAxis':_0x2f9429(0x106)},'position':'Vị\x20trí','dataLabels':_0x2f9429(0xe6),'gridlinesAndTicks':_0x2f9429(0xdf),'indicatorLine':_0x2f9429(0x113),'indicatorLineType':'Loại\x20đường\x20chỉ\x20số','indicatorLineColor':_0x2f9429(0x128),'indicatorLabel':_0x2f9429(0x15f),'indicatorValue':'Giá\x20trị\x20chỉ\x20số','shape':{'polygon':_0x2f9429(0xf3),'circle':_0x2f9429(0x181),'square':_0x2f9429(0x153),'triangle':_0x2f9429(0x179),'diamond':_0x2f9429(0x105),'rect':_0x2f9429(0x10e),'roundRect':_0x2f9429(0x175),'pin':_0x2f9429(0xf8),'arrow':_0x2f9429(0x173),'none':_0x2f9429(0xdd),'emptyCircle':_0x2f9429(0xff),'emptySquare':'Hình\x20vuông\x20trống','emptyTriangle':_0x2f9429(0x102),'emptyDiamond':_0x2f9429(0x15c),'emptyRect':_0x2f9429(0x13b),'emptyRoundRect':_0x2f9429(0x115),'emptyPin':'Hình\x20ghim\x20trống','emptyArrow':_0x2f9429(0x140)},'border':_0x2f9429(0x104),'value':'Giá\x20trị','fill':_0x2f9429(0xc1),'line':_0x2f9429(0x109),'withOpacity':_0x2f9429(0xfd),'withColor':_0x2f9429(0xc6),'withThickness':_0x2f9429(0x116),'withType':_0x2f9429(0x12f),'withSize':'{0}\x20kích\x20thước','withShape':_0x2f9429(0x129),'withFormat':'{0}\x20định\x20dạng','dataPoint':'Điểm\x20dữ\x20liệu','dataNodeShape':_0x2f9429(0x101),'addDataPoint':_0x2f9429(0x178),'point':_0x2f9429(0x130),'percentage':'Phần\x20trăm','lineType':{'line':_0x2f9429(0x109),'smooth':_0x2f9429(0x112),'step':_0x2f9429(0x14d)},'stackType':{'stack':_0x2f9429(0xd3),'percent':_0x2f9429(0xd7)},'lineDashType':_0x2f9429(0x17c),'dashType':{'solid':_0x2f9429(0x133),'dash':'Gạch','dot':_0x2f9429(0x141)},'color':_0x2f9429(0x111),'gridlines':{'majorGridlines':'Đường\x20lưới\x20chính','text':_0x2f9429(0xd5)},'ticks':{'majorTick':_0x2f9429(0xf9),'tickPosition':_0x2f9429(0x187),'tickLength':_0x2f9429(0xfb)},'none':'Không','theIndexItem':_0x2f9429(0x16f),'seriesDefaultName':_0x2f9429(0x14e),'categoryDefaultName':'Danh\x20mục\x20{0}','styleEditPanel':{'showLabels':_0x2f9429(0x12a),'showDataLabels':'Hiển\x20thị\x20nhãn\x20dữ\x20liệu','padAngle':'Góc\x20đệm','halfPie':'Nửa\x20bánh','rosePie':'Bánh\x20hồng','pieValScale':_0x2f9429(0x143),'pieValSuffix':_0x2f9429(0x159),'pieDigitalFixed':'Chữ\x20số\x20cố\x20định','showLabelLine':_0x2f9429(0x125),'reverseAxisOrder':_0x2f9429(0x17b),'showAxisLine':_0x2f9429(0x107),'labelPosition':_0x2f9429(0xc0),'labelText':_0x2f9429(0x17a),'repeatWordCould':_0x2f9429(0xf7),'gap':_0x2f9429(0x16c),'useAbsValue':_0x2f9429(0x18b),'labelRotate':_0x2f9429(0x11d),'wordCloudShape':_0x2f9429(0xe5),'useDateAxis':'Sử\x20dụng\x20trục\x20ngày','dateAxisTips':'Trục\x20ngày\x20chỉ\x20khả\x20dụng\x20khi\x20tất\x20cả\x20dữ\x20liệu\x20đều\x20có\x20định\x20dạng\x20ngày'},'radar':{'fill':_0x2f9429(0xc1)},'doughnutHole':'Lỗ\x20bánh\x20rán','msg':{'invalidSource':_0x2f9429(0x13f),'emptyTips':_0x2f9429(0x17f),'sankeyCircularTips':_0x2f9429(0x189)},'cloud':{'title':_0x2f9429(0x13a),'word':'Từ','frequency':_0x2f9429(0x120)},'trendline':{'name':'Đường\x20xu\x20hướng','displayName':'Tên\x20đường\x20xu\x20hướng','addTrendLine':_0x2f9429(0x121),'trendlineType':'Loại\x20đường\x20xu\x20hướng','trendlineName':_0x2f9429(0x18a),'trendlineColor':_0x2f9429(0xd2),'trendlineThickness':'Độ\x20dày\x20đường\x20xu\x20hướng','trendlineDashType':_0x2f9429(0x14b),'exp':_0x2f9429(0xe7),'linear':_0x2f9429(0x154),'log':_0x2f9429(0x12d),'pow':_0x2f9429(0x127),'movingAvg':_0x2f9429(0xf2),'poly':'Đa\x20thức','order':_0x2f9429(0xd0),'period':_0x2f9429(0x170),'showFormula':'Hiển\x20thị\x20công\x20thức','showR2':_0x2f9429(0x145),'formula':_0x2f9429(0x149),'r2':'R\x20bình\x20phương'},'bubble':{'xAxis':_0x2f9429(0xc9),'yAxis':_0x2f9429(0x114),'size':_0x2f9429(0xd6),'label':_0x2f9429(0x171),'emptyTips':_0x2f9429(0x180)},'relation':{'title':'Biểu\x20đồ\x20quan\x20hệ','auto':_0x2f9429(0xc8),'circular':_0x2f9429(0x181),'force':_0x2f9429(0x117),'useValueAsSymbolSize':_0x2f9429(0x188),'layoutType':_0x2f9429(0x174),'forceOptions':_0x2f9429(0x172),'repulsion':_0x2f9429(0x15d),'gravity':_0x2f9429(0xee),'edgeLength':_0x2f9429(0x151),'rotateLabel':'Xoay\x20nhãn','emphasis':_0x2f9429(0xe2),'emptyTips':_0x2f9429(0x11c)},'waterfall':{'stackType':_0x2f9429(0x124),'arrangement':'Tuần\x20tự','stacked':'Xếp\x20chồng','positive':_0x2f9429(0x176),'negative':'Giá\x20trị\x20âm','subtotal':_0x2f9429(0x17e),'showSubtotal':_0x2f9429(0xf5),'positiveStyle':'Kiểu\x20giá\x20trị\x20dương','negativeStyle':_0x2f9429(0xfc),'subtotalStyle':_0x2f9429(0x12e),'positiveLegendText':_0x2f9429(0x108),'negativeLegendText':_0x2f9429(0x185),'subtotalLegendText':_0x2f9429(0x138)},'pareto':{'lineName':_0x2f9429(0x14a),'lineSeries':_0x2f9429(0xde),'barSeries':'Chuỗi\x20biểu\x20đồ\x20cột'},'visualMapScope':'Phạm\x20vi\x20bản\x20đồ\x20trực\x20quan','boxplot':{'min':_0x2f9429(0x156),'q1':_0x2f9429(0x10d),'median':_0x2f9429(0xec),'q3':_0x2f9429(0xfa),'max':'Giá\x20trị\x20lớn\x20nhất'},'chartTypes':{'line':'Biểu\x20đồ\x20đường','area':_0x2f9429(0x161),'areaStacked':_0x2f9429(0x15e),'areaPercentStacked':_0x2f9429(0x118),'column':_0x2f9429(0x13c),'bar':'Biểu\x20đồ\x20thanh','barStacked':_0x2f9429(0x184),'barPercentStacked':'Biểu\x20đồ\x20thanh\x20chồng\x20phần\x20trăm','pie':_0x2f9429(0xcc),'donut':_0x2f9429(0xe8),'scatter':_0x2f9429(0xce),'radar':'Biểu\x20đồ\x20radar','bubble':'Biểu\x20đồ\x20bong\x20bóng','stock':_0x2f9429(0xcf),'combination':_0x2f9429(0x146),'wordCloud':_0x2f9429(0x186),'funnel':'Biểu\x20đồ\x20phễu','relation':_0x2f9429(0x147),'waterfall':_0x2f9429(0x182),'pareto':'Biểu\x20đồ\x20Pareto','sankey':_0x2f9429(0x152),'heatmap':_0x2f9429(0x14f),'boxplot':_0x2f9429(0xd8)},'dialog':{'numfmt':{'general':'Chung','accounting':_0x2f9429(0x165),'currency':'Tiền\x20tệ','date':_0x2f9429(0x10b),'thousandthPercentile':'Phần\x20nghìn','fieldSetting':_0x2f9429(0x17d),'formatTypes':_0x2f9429(0x15b),'confirm':_0x2f9429(0x16e),'cancel':'Hủy','generalDesc':_0x2f9429(0x164),'accountingDesc':_0x2f9429(0x12c),'currencyDesc':_0x2f9429(0x13d),'dateDesc':_0x2f9429(0x148),'thousandthPercentileDesc':'Định\x20dạng\x20phần\x20nghìn\x20dùng\x20cho\x20các\x20số\x20thông\x20thường;\x20định\x20dạng\x20tiền\x20tệ\x20và\x20kế\x20toán\x20cung\x20cấp\x20các\x20tùy\x20chọn\x20chuyên\x20biệt\x20cho\x20giá\x20trị\x20tài\x20chính.','decimalPlaces':_0x2f9429(0x162),'currencyTypes':_0x2f9429(0x126),'negativeNumberTypes':'Kiểu\x20số\x20âm','dateTypes':_0x2f9429(0x11b)},'setFormat':_0x2f9429(0x15a)}}};function _0x211e(_0x16d57f,_0x67801){_0x16d57f=_0x16d57f-0xbf;const _0x1234a8=_0x1234();let _0x211e13=_0x1234a8[_0x16d57f];return _0x211e13;}export{e as default};function _0x1234(){const _0x41a36e=['Trung\x20vị','Kết\x20nối\x20điểm\x20dữ\x20liệu\x20bằng\x20đường\x20thẳng','Trọng\x20lực','Dưới\x20cùng','Chọn\x20nhiều','Export\x20as\x20image','Trung\x20bình\x20động','Đa\x20giác','39620NbKhgw','Hiển\x20thị\x20tổng\x20phụ','Căn\x20giữa','Lặp\x20lại\x20word\x20cloud','Hình\x20ghim','Dấu\x20chấm\x20chính','Phần\x20tư\x20thứ\x20ba','Chiều\x20dài\x20dấu\x20chấm','Kiểu\x20giá\x20trị\x20âm','{0}\x20độ\x20mờ','Bắt\x20đầu','Hình\x20tròn\x20trống','13412564uKAuGI','Hình\x20dạng\x20nút\x20dữ\x20liệu','Hình\x20tam\x20giác\x20trống','Căn\x20phải','Viền','Hình\x20thoi','Sử\x20dụng\x20trục\x20Y\x20phải','Hiển\x20thị\x20đường\x20trục','Chú\x20thích\x20giá\x20trị\x20dương','Đường','Loạt','Ngày\x20tháng','Mặc\x20định','Phần\x20tư\x20thứ\x20nhất','Hình\x20chữ\x20nhật','Khoảng\x20trống','Vị\x20trí\x20tiêu\x20đề','Màu','Mượt','Đường\x20chỉ\x20số','Trục\x20Y','Hình\x20chữ\x20nhật\x20bo\x20góc\x20trống','{0}\x20độ\x20dày','Lực\x20tác\x20động','Biểu\x20đồ\x20diện\x20tích\x20chồng\x20phần\x20trăm','6DEStmH','Hiển\x20thị\x20ô\x20trống\x20như','Kiểu\x20ngày\x20tháng','Nguồn\x20dữ\x20liệu\x20cho\x20biểu\x20đồ\x20quan\x20hệ\x20là\x20ma\x20trận\x20đồng\x20từ\x20với\x20cột\x20loại\x20bổ\x20sung\x20ở\x20cột\x20thứ\x20hai','Xoay\x20nhãn','Tiêu\x20đề\x20phụ','Định\x20dạng','Tần\x20suất','Thêm\x20đường\x20xu\x20hướng','Xóa\x20biểu\x20đồ','Chuyển\x20sang\x20hàng\x20hoặc\x20cột','Kiểu\x20xếp\x20chồng','Hiển\x20thị\x20đường\x20nhãn','Loại\x20tiền\x20tệ','Lũy\x20thừa','Màu\x20đường\x20chỉ\x20số','{0}\x20hình\x20dạng','Hiển\x20thị\x20nhãn','Trên\x20cùng','Định\x20dạng\x20kế\x20toán\x20căn\x20chỉnh\x20ký\x20hiệu\x20tiền\x20tệ\x20và\x20dấu\x20thập\x20phân\x20theo\x20cột.','Logarit','Kiểu\x20tổng\x20phụ','{0}\x20loại','Điểm','Tối\x20đa','Chọn\x20một','Liền','Tiêu\x20đề\x20trục\x20Y','Trục\x20đứng\x20phải','Tổng\x20hợp','Phạm\x20vi\x20này\x20đã\x20được\x20bảo\x20vệ,\x20hiện\x20không\x20có\x20quyền\x20chỉnh\x20sửa.\x20Nếu\x20cần\x20chỉnh\x20sửa,\x20vui\x20lòng\x20liên\x20hệ\x20với\x20ngườ\x20i\x20tạo.','Chú\x20thích\x20tổng\x20phụ','Phải','Word\x20cloud','Hình\x20chữ\x20nhật\x20trống','Biểu\x20đồ\x20cột','Định\x20dạng\x20tiền\x20tệ\x20dùng\x20cho\x20các\x20giá\x20trị\x20tài\x20chính\x20chung,\x20trong\x20khi\x20định\x20dạng\x20kế\x20toán\x20căn\x20chỉnh\x20dấu\x20thập\x20phân\x20theo\x20cột\x20giá\x20trị.','Chủ\x20đề','Nguồn\x20dữ\x20liệu\x20biểu\x20đồ\x20phải\x20có\x20nhiều\x20hơn\x201\x20hàng\x20và\x201\x20cột.','Mũi\x20tên\x20trống','Chấm','57ngiSNm','Tỷ\x20lệ\x20giá\x20trị\x20bánh','Định\x20dạng\x20tiêu\x20đề','Hiển\x20thị\x20R\x20bình\x20phương','Biểu\x20đồ\x20kết\x20hợp','Biểu\x20đồ\x20quan\x20hệ','Định\x20dạng\x20ngày\x20hiển\x20thị\x20số\x20sê-ri\x20ngày\x20giờ\x20dưới\x20dạng\x20giá\x20trị\x20ngày\x20tháng.','Công\x20thức','Tỷ\x20lệ\x20tích\x20lũy','Loại\x20đường\x20nét\x20đứt\x20của\x20đường\x20xu\x20hướng','Đặt\x20lại','Bước','Loạt\x20{0}','Biểu\x20đồ\x20nhiệt','Thêm\x20loạt','Khoảng\x20cách\x20giữa\x20các\x20nút','Biểu\x20đồ\x20Sankey','Hình\x20vuông','Tuyến\x20tính','Tùy\x20chỉnh','Giá\x20trị\x20nhỏ\x20nhất','Danh\x20mục','Trục\x20trái','Hậu\x20tố\x20giá\x20trị','Thiết\x20lập\x20định\x20dạng\x20nhãn','Các\x20loại\x20định\x20dạng','Hình\x20thoi\x20trống','Lực\x20đẩy','Biểu\x20đồ\x20diện\x20tích\x20chồng','Nhãn\x20chỉ\x20số','Kiểu\x20biểu\x20đồ','Biểu\x20đồ\x20diện\x20tích','Số\x20chữ\x20số\x20thập\x20phân','Tiêu\x20đề\x20chính','Định\x20dạng\x20chung\x20không\x20áp\x20dụng\x20định\x20dạng\x20số\x20cụ\x20thể\x20nào.','Kế\x20toán','Giữa','Thiết\x20lập','Màu\x20viền\x20biểu\x20đồ','Chèn\x20biểu\x20đồ','Liên\x20tục','Tối\x20thiểu','Khoảng\x20cách','(Trống)','Đồng\x20ý','Mục\x20thứ\x20{0}','Chu\x20kỳ\x20trung\x20bình\x20động','Nhãn\x20bong\x20bóng','Tùy\x20chọn\x20bố\x20cục\x20lực\x20tác\x20động','Mũi\x20tên','Loại\x20bố\x20cục','Hình\x20chữ\x20nhật\x20bo\x20góc','Giá\x20trị\x20dương','Trục\x20đứng','Thêm\x20điểm\x20dữ\x20liệu','Hình\x20tam\x20giác','Văn\x20bản\x20nhãn','Đảo\x20thứ\x20tự\x20trục','Loại\x20đường','Thiết\x20lập\x20trường','Tổng\x20phụ','Không\x20có\x20dữ\x20liệu\x20để\x20hiển\x20thị.','Biểu\x20đồ\x20bong\x20bóng\x20yêu\x20cầu\x20ít\x20nhất\x202\x20cột:\x20trục\x20X,\x20trục\x20Y','Hình\x20tròn','Biểu\x20đồ\x20thác\x20nước','Tiêu\x20đề\x20trục\x20X','Biểu\x20đồ\x20thanh\x20chồng','Chú\x20thích\x20giá\x20trị\x20âm','Biểu\x20đồ\x20word\x20cloud','Vị\x20trí\x20dấu\x20chấm','Dùng\x20giá\x20trị\x20làm\x20kích\x20thước\x20nút','Biểu\x20đồ\x20Sankey\x20không\x20thể\x20chứa\x20dữ\x20liệu\x20vòng\x20lặp','Tên\x20đường\x20xu\x20hướng','Sử\x20dụng\x20giá\x20trị\x20tuyệt\x20đối','1676ooXLvc','Vị\x20trí\x20nhãn','Đổ\x20màu','Màu\x20nền','2886685NUhoDY','Trục\x20phải','Tất\x20cả\x20các\x20loạt','{0}\x20màu','Tùy\x20chọn\x20trục','Tự\x20động','Trục\x20X','8pPATMN','Mở\x20bảng\x20điều\x20khiển\x20biểu\x20đồ','Biểu\x20đồ\x20tròn','Trái','Biểu\x20đồ\x20phân\x20tán','Biểu\x20đồ\x20cổ\x20phiếu','Bậc\x20của\x20đa\x20thức','Mảnh','Màu\x20đường\x20xu\x20hướng','Chồng','Văn\x20bản\x20tiêu\x20đề','Đường\x20lưới','Kích\x20thước\x20bong\x20bóng','Phần\x20trăm\x20chồng','Biểu\x20đồ\x20hộp','Căn\x20tiêu\x20đề\x20trục','Kết\x20thúc','Biên\x20tập\x20biểu\x20đồ','Tiêu\x20đề','Không','Chuỗi\x20tỷ\x20lệ\x20tích\x20lũy','Đường\x20lưới\x20và\x20dấu','248206vhuLBS','10908408QKxjXH','Bật\x20hiệu\x20ứng\x20xuất\x20hiện\x20khi\x20chọn','Chú\x20giải','Trục\x20ngang','Hình\x20dạng\x20word\x20cloud','Nhãn\x20dữ\x20liệu','Hàm\x20mũ','Biểu\x20đồ\x20donut','Cài\x20đặt\x20khác','2826TSFNzC','2873171Lqpewn'];_0x1234=function(){return _0x41a36e;};return _0x1234();}
@@ -1 +1 @@
1
- const _0x1b1a68=_0x1cbb;function _0x1cbb(_0x25a472,_0x811cf1){_0x25a472=_0x25a472-0x6b;const _0x310c7a=_0x310c();let _0x1cbb02=_0x310c7a[_0x25a472];return _0x1cbb02;}(function(_0x254ed6,_0x43a46f){const _0x5c8450=_0x1cbb,_0x4ee6e0=_0x254ed6();while(!![]){try{const _0x35b982=parseInt(_0x5c8450(0xe6))/0x1*(-parseInt(_0x5c8450(0x7f))/0x2)+-parseInt(_0x5c8450(0x98))/0x3*(parseInt(_0x5c8450(0x7e))/0x4)+parseInt(_0x5c8450(0xe8))/0x5+-parseInt(_0x5c8450(0x78))/0x6+-parseInt(_0x5c8450(0x7b))/0x7+parseInt(_0x5c8450(0xf3))/0x8*(-parseInt(_0x5c8450(0xb9))/0x9)+-parseInt(_0x5c8450(0xda))/0xa*(-parseInt(_0x5c8450(0xd6))/0xb);if(_0x35b982===_0x43a46f)break;else _0x4ee6e0['push'](_0x4ee6e0['shift']());}catch(_0xf8b4b2){_0x4ee6e0['push'](_0x4ee6e0['shift']());}}}(_0x310c,0x7f19b));const e={'sheets-chart-ui':{'permission':{'editErr':'该范围已被保护,目前无编辑权限。如需编辑,请联系创建者。'},'insertChart':_0x1b1a68(0xa1),'editChart':'图表','openChartPanel':_0x1b1a68(0x83),'deleteChart':'删除图表','hideChartPanel':_0x1b1a68(0xc1),'setupChart':_0x1b1a68(0x8c),'customChart':_0x1b1a68(0x9e),'default':'默认','reset':'重置','chartType':_0x1b1a68(0x89),'themes':_0x1b1a68(0xf9),'dataRange':_0x1b1a68(0xab),'stack':'堆叠','category':'类别','aggregate':'聚合','allSeries':_0x1b1a68(0x93),'series':'系列','addSeries':_0x1b1a68(0xf5),'moreSettings':'更多设置','min':_0x1b1a68(0xbb),'max':_0x1b1a68(0x77),'invalidType':{'gaps':'空','zero':'零','connectDataPointsWithStraightLines':_0x1b1a68(0xd2)},'blank':_0x1b1a68(0xba),'seriesBlock':{'format':'格式','dataPointStyle':_0x1b1a68(0xf4)},'backgroundColor':_0x1b1a68(0xe2),'chartBorderColor':_0x1b1a68(0x7d),'titles':{'title':'标题','mainTitle':_0x1b1a68(0x86),'subTitle':_0x1b1a68(0x8e),'xAxisTitle':_0x1b1a68(0xd5),'yAxisTitle':_0x1b1a68(0x90),'rightYAxisTitle':_0x1b1a68(0xe3),'titleFormat':_0x1b1a68(0xdc),'titleText':_0x1b1a68(0xed),'titlePosition':_0x1b1a68(0xb8),'titleAlign':'轴标题对齐'},'axisPositionType':{'start':'开始','center':'中间','end':'结束'},'gradientFill':'渐变填充','settingsLabels':{'switchToRowOrColumn':'切换行列','useAsCategoryLabels':_0x1b1a68(0xc5),'showEmptyCellsAs':_0x1b1a68(0xa0)},'positionType':{'auto':'自动','inside':'内部','outside':'外部','top':'顶部','bottom':'底部','left':'左侧','right':'右侧','hide':'隐藏'},'align':{'left':'左对齐','center':'居中','right':_0x1b1a68(0xaa)},'alignY':{'top':'顶部','middle':'居中','bottom':'底部'},'chartStyle':_0x1b1a68(0xbc),'chartAndAxisTitles':_0x1b1a68(0x88),'legend':'图例','legendSelectMode':_0x1b1a68(0xec),'legendSelectModeType':{'single':'单选','multiple':'多选','close':'关闭'},'legendVisualMapType':{'continuous':'连续','piecewise':'分段'},'axes':{'axis':'轴','axisOptions':'轴选项','horizontalAxis':'横轴','verticalAxis':'纵轴','rightVerticalAxis':'右纵轴','leftAxis':'左轴','rightAxis':'右轴','useRightAxis':_0x1b1a68(0xe0)},'position':'位置','dataLabels':_0x1b1a68(0xa4),'gridlinesAndTicks':'网格线和刻度线','indicatorLine':'指示线','indicatorLineType':_0x1b1a68(0xf8),'indicatorLineColor':'指示线颜色','indicatorLabel':'标签颜色','indicatorValue':_0x1b1a68(0xc0),'shape':{'polygon':_0x1b1a68(0x8f),'circle':'圆形','square':_0x1b1a68(0x99),'triangle':_0x1b1a68(0xd4),'diamond':'菱形','rect':'矩形','roundRect':_0x1b1a68(0xe7),'pin':'钉形','arrow':'箭头','none':'无','emptyCircle':_0x1b1a68(0xad),'emptySquare':'空心正方形','emptyTriangle':_0x1b1a68(0xd1),'emptyDiamond':_0x1b1a68(0xb5),'emptyRect':_0x1b1a68(0x8b),'emptyRoundRect':_0x1b1a68(0x70),'emptyPin':_0x1b1a68(0xa3),'emptyArrow':_0x1b1a68(0x73)},'border':'边框','value':'值','fill':'填充','line':'线条','withOpacity':_0x1b1a68(0x6f),'withColor':_0x1b1a68(0xe5),'withThickness':_0x1b1a68(0xb0),'withType':'{0}类型','withSize':_0x1b1a68(0xf2),'withShape':_0x1b1a68(0x71),'withFormat':_0x1b1a68(0x76),'dataPoint':_0x1b1a68(0xae),'dataNodeShape':_0x1b1a68(0xd7),'addDataPoint':_0x1b1a68(0xbd),'point':_0x1b1a68(0xae),'percentage':_0x1b1a68(0x95),'lineType':{'line':'折线','smooth':'平滑','step':'阶梯'},'stackType':{'stack':'堆叠','percent':'百分比堆叠'},'lineDashType':'线类型','dashType':{'solid':'实线','dash':'虚线','dot':'点线'},'color':'颜色','gridlines':{'majorGridlines':'主网格线','text':_0x1b1a68(0x94)},'ticks':{'majorTick':_0x1b1a68(0x81),'tickPosition':'刻度线位置','tickLength':_0x1b1a68(0x9c)},'none':'无','theIndexItem':_0x1b1a68(0x9d),'seriesDefaultName':_0x1b1a68(0xbf),'categoryDefaultName':_0x1b1a68(0xef),'styleEditPanel':{'showLabels':_0x1b1a68(0x6e),'showDataLabels':_0x1b1a68(0xf6),'padAngle':_0x1b1a68(0x79),'halfPie':'半饼','rosePie':'玫瑰图','pieValScale':_0x1b1a68(0xde),'pieValSuffix':'数值后缀','pieDigitalFixed':_0x1b1a68(0x75),'showLabelLine':'显示标签线','reverseAxisOrder':_0x1b1a68(0xc2),'showAxisLine':_0x1b1a68(0xd8),'labelPosition':'标签位置','labelText':'标签文本','repeatWordCould':_0x1b1a68(0xa5),'gap':'间隔','useAbsValue':_0x1b1a68(0xf0),'labelRotate':_0x1b1a68(0xf1),'wordCloudShape':_0x1b1a68(0x85),'useDateAxis':_0x1b1a68(0x8d),'dateAxisTips':_0x1b1a68(0x7a)},'radar':{'fill':'填充'},'doughnutHole':_0x1b1a68(0xb1),'msg':{'invalidSource':_0x1b1a68(0xc4),'emptyTips':'请先添加系列开始数据可视化','sankeyCircularTips':_0x1b1a68(0xb3)},'cloud':{'title':'词云','word':'词语','frequency':'频率'},'trendline':{'name':_0x1b1a68(0xa6),'displayName':_0x1b1a68(0xea),'addTrendLine':_0x1b1a68(0xcb),'trendlineType':_0x1b1a68(0xcd),'trendlineName':_0x1b1a68(0xea),'trendlineColor':'趋势线颜色','trendlineThickness':_0x1b1a68(0xd9),'trendlineDashType':_0x1b1a68(0xdb),'exp':'指数','linear':'线性','log':'对数','pow':'幂','movingAvg':_0x1b1a68(0xd0),'poly':_0x1b1a68(0xb4),'order':_0x1b1a68(0xb7),'period':_0x1b1a68(0x6b),'showFormula':_0x1b1a68(0xf7),'showR2':_0x1b1a68(0xa7),'formula':'公式','r2':'R平方'},'bubble':{'xAxis':'X轴','yAxis':'Y轴','size':_0x1b1a68(0x91),'label':_0x1b1a68(0xc8),'emptyTips':_0x1b1a68(0x84)},'relation':{'title':_0x1b1a68(0x92),'auto':'自动','circular':'环形','force':_0x1b1a68(0x87),'useValueAsSymbolSize':_0x1b1a68(0xc9),'layoutType':_0x1b1a68(0xc6),'forceOptions':_0x1b1a68(0xcc),'repulsion':'斥力','gravity':'引力','edgeLength':_0x1b1a68(0xee),'rotateLabel':_0x1b1a68(0xb6),'emphasis':_0x1b1a68(0x80),'emptyTips':_0x1b1a68(0x9f)},'waterfall':{'stackType':_0x1b1a68(0xe4),'arrangement':'依序','stacked':'堆积','positive':'正值','negative':'负值','subtotal':'小计','showSubtotal':_0x1b1a68(0xd3),'positiveStyle':_0x1b1a68(0xdf),'negativeStyle':'负值样式','subtotalStyle':_0x1b1a68(0x9b),'positiveLegendText':_0x1b1a68(0xb2),'negativeLegendText':'负值图例文本','subtotalLegendText':'小计图例文本'},'pareto':{'lineName':_0x1b1a68(0xe9),'lineSeries':'累积占比系列','barSeries':_0x1b1a68(0x97)},'visualMapScope':_0x1b1a68(0x6c),'boxplot':{'min':_0x1b1a68(0xbb),'q1':_0x1b1a68(0x7c),'median':_0x1b1a68(0x6d),'q3':_0x1b1a68(0xc3),'max':_0x1b1a68(0x77)},'chartTypes':{'line':'折线图','area':_0x1b1a68(0xeb),'areaStacked':'堆叠面积图','areaPercentStacked':'百分比堆叠面积图','column':_0x1b1a68(0x96),'bar':'条形图','barStacked':_0x1b1a68(0xa9),'barPercentStacked':_0x1b1a68(0xac),'pie':'饼图','donut':'环形图','scatter':_0x1b1a68(0x72),'radar':'雷达图','bubble':_0x1b1a68(0xce),'stock':'股票图','combination':_0x1b1a68(0xdd),'wordCloud':_0x1b1a68(0x9a),'funnel':_0x1b1a68(0xca),'relation':'关系图','waterfall':'瀑布图','pareto':_0x1b1a68(0x82),'sankey':_0x1b1a68(0xaf),'heatmap':_0x1b1a68(0xe1),'boxplot':'箱线图'},'dialog':{'numfmt':{'general':'常规','accounting':'会计','currency':'货币','date':'日期','thousandthPercentile':_0x1b1a68(0xc7),'fieldSetting':_0x1b1a68(0x74),'formatTypes':'格式类型','confirm':'确定','cancel':'取消','generalDesc':'常规格式不包含任何特定的数字格式。','accountingDesc':'会计数字格式可对一列数值进行货币符号和小数点对齐。','currencyDesc':'货币格式用于表示一般货币数值,会计格式可以对一列数值进行小数点对齐。','dateDesc':'日期格式将日期和时间系列数值品示为日期值。','thousandthPercentileDesc':_0x1b1a68(0xa2),'decimalPlaces':_0x1b1a68(0x75),'currencyTypes':_0x1b1a68(0x8a),'negativeNumberTypes':_0x1b1a68(0xbe),'dateTypes':_0x1b1a68(0xcf)},'setFormat':_0x1b1a68(0xa8)}}};function _0x310c(){const _0x43bba8=['显示小计','三角形','横轴标题','15350401ySACYU','节点形状','显示轴线','趋势线粗细','20LMsVCQ','趋势线线类型','标题格式','组合图','数值比例','正值样式','使用右轴','热力图','背景颜色','右纵轴标题','堆叠方式','{0}颜色','1240sqCKTa','圆角矩形','472555CIdWjH','累积占比','趋势线名称','面积图','图例选择模式','标题文本','节点距离','类别\x20{0}','使用绝对值','标签旋转','{0}大小','2875704tXPCvW','数据点样式','添加系列','显示数据标签','显示公式','指示线类型','主题色','移动平均周期','视觉映射范围','中位数','显示标签','{0}透明度','空心圆角矩形','{0}形状','散点图','空心箭头','字段设置','小数位数','{0}格式','最大值','3924276ptreqJ','扇形间距','日期轴仅在数据全部为日期格式时可用','1560244KEgxoD','第一四分位数','图表边框颜色','1525652EwuQMU','10iRvrga','开启选中淡入特效','主刻度线','排列图','打开图表面板','气泡图至少需要2列,X轴、Y轴。','词云形状','图表标题','力导向','图表和轴标题','图表类型','货币类型','空心矩形','类型与数据','使用日期轴','副标题','多边形','纵轴标题','气泡大小','关系图','所有系列','网格线','百分比','柱状图','柱状图系列','6ZfQnAt','正方形','词云图','小计样式','刻度线长度','第{0}项','自定义样式','关系图数据源为额外添加类型列在第二列的共词矩阵','空单元格显示为','插入图表','千分位符格式用于一般数字的表示,货币和会计格式则提供货币值计算的专用格式。','空心钉形','数据标签','重复词云标签','趋势线','显示R平方','设置标签格式','堆叠条形图','右对齐','数据范围','百分比堆叠条形图','空心圆形','数据点','桑基图','{0}粗细','圆环孔','正值图例文本','桑基图不能包含循环数据','多项式','空心菱形','旋转标签','多项式阶数','标题位置','18lnSZnJ','()','最小值','图表样式','添加数据点','负数类型','系列\x20{0}','文本颜色','隐藏图表面板','逆序轴','第三四分位数','图表数据源必须包含多于1行和1列。','将\x20{0}\x20作为类别','布局类型','千分位符','气泡标签','使用值作为节点大小','漏斗图','添加趋势线','力导向选项','趋势线类型','气泡图','日期类型','移动平均','空心三角形','用直线连接数据点'];_0x310c=function(){return _0x43bba8;};return _0x310c();}export{e as default};
1
+ const _0x5041ed=_0x3b59;function _0x4bed(){const _0x460153=['网格线和刻度线','刻度线长度','显示标签','{0}粗细','桑基图','数据点','数据范围','数据标签','多边形','主网格线','标题格式','词云图','热力图','雷达图','标签旋转','气泡大小','节点形状','堆叠面积图','165IaYTfR','指示线颜色','409730QtGgYV','4VRMvIM','开启选中淡入特效','标签文本','189uinzPX','轴选项','百分比堆叠面积图','删除图表','显示小计','排列图','设置标签格式','关系图','空心箭头','{0}透明度','右对齐','使用日期轴','圆环孔','轴标题对齐','56zbHHCV','日期格式将日期和时间系列数值品示为日期值。','货币类型','千分位符格式用于一般数字的表示,货币和会计格式则提供货币值计算的专用格式。','图表类型','()','使用值作为节点大小','19288xVnKJp','移动平均周期','漏斗图','标题文本','格式类型','趋势线颜色','日期类型','图表标题','环形图','气泡标签','圆角矩形','趋势线名称','图例选择模式','逆序轴','堆叠条形图','第三四分位数','使用绝对值','小数位数','空心圆形','多项式','桑基图不能包含循环数据','瀑布图','条形图','节点距离','纵轴标题','类型与数据','空心钉形','副标题','百分比堆叠','字段设置','百分比','85LYZGoX','第{0}项','趋势线类型','添加系列','数据点样式','请先添加系列开始数据可视化','趋势线','显示数据标签','词云形状','导出图片','常规格式不包含任何特定的数字格式。','重复词云标签','负值图例文本','货币格式用于表示一般货币数值,会计格式可以对一列数值进行小数点对齐。','横轴标题','正值图例文本','小计图例文本','正方形','空心圆角矩形','负值样式','移动平均','散点图','股票图','插入图表','{0}形状','978342BPDQVZ','系列\x20{0}','539844JZEzxW','最大值','趋势线粗细','中位数','刻度线位置','显示公式','空单元格显示为','玫瑰图','345457jtOkvV','负数类型','柱状图','自定义样式','渐变填充','柱状图系列','气泡图','第一四分位数','1268247tnGzEz','添加趋势线','多项式阶数','趋势线线类型','该范围已被保护,目前无编辑权限。如需编辑,请联系创建者。','小计样式','网格线','千分位符','三角形','标题位置','指示线类型','主刻度线','最小值','用直线连接数据点','{0}格式','累积占比系列','日期轴仅在数据全部为日期格式时可用','535598gsLewD','主题色','右纵轴','显示标签线','切换行列','图表边框颜色'];_0x4bed=function(){return _0x460153;};return _0x4bed();}(function(_0x2aca92,_0x390934){const _0x4d5539=_0x3b59,_0x30619c=_0x2aca92();while(!![]){try{const _0x5094ff=parseInt(_0x4d5539(0x238))/0x1+parseInt(_0x4d5539(0x1c5))/0x2*(parseInt(_0x4d5539(0x227))/0x3)+parseInt(_0x4d5539(0x1dd))/0x4*(parseInt(_0x4d5539(0x1fc))/0x5)+parseInt(_0x4d5539(0x215))/0x6+parseInt(_0x4d5539(0x21f))/0x7*(parseInt(_0x4d5539(0x1d6))/0x8)+parseInt(_0x4d5539(0x1c8))/0x9*(-parseInt(_0x4d5539(0x1c4))/0xa)+parseInt(_0x4d5539(0x1c2))/0xb*(-parseInt(_0x4d5539(0x217))/0xc);if(_0x5094ff===_0x390934)break;else _0x30619c['push'](_0x30619c['shift']());}catch(_0x33f63c){_0x30619c['push'](_0x30619c['shift']());}}}(_0x4bed,0x6a87a));const e={'sheets-chart-ui':{'permission':{'editErr':_0x5041ed(0x22b)},'insertChart':_0x5041ed(0x213),'editChart':'图表','openChartPanel':'编辑图表','deleteChart':_0x5041ed(0x1cb),'exportImage':_0x5041ed(0x205),'copy':'复制','hideChartPanel':'隐藏图表面板','setupChart':_0x5041ed(0x1f6),'customChart':_0x5041ed(0x222),'default':'默认','reset':'重置','chartType':_0x5041ed(0x1da),'themes':_0x5041ed(0x1ab),'dataRange':_0x5041ed(0x1b6),'stack':'堆叠','category':'类别','aggregate':'聚合','allSeries':'所有系列','series':'系列','addSeries':_0x5041ed(0x1ff),'moreSettings':'更多设置','min':_0x5041ed(0x233),'max':_0x5041ed(0x218),'invalidType':{'gaps':'空','zero':'零','connectDataPointsWithStraightLines':_0x5041ed(0x234)},'blank':_0x5041ed(0x1db),'seriesBlock':{'format':'格式','dataPointStyle':_0x5041ed(0x200)},'backgroundColor':'背景颜色','chartBorderColor':_0x5041ed(0x1af),'titles':{'title':'标题','mainTitle':_0x5041ed(0x1e4),'subTitle':_0x5041ed(0x1f8),'xAxisTitle':_0x5041ed(0x20a),'yAxisTitle':_0x5041ed(0x1f5),'rightYAxisTitle':'右纵轴标题','titleFormat':_0x5041ed(0x1ba),'titleText':_0x5041ed(0x1e0),'titlePosition':_0x5041ed(0x230),'titleAlign':_0x5041ed(0x1d5)},'axisPositionType':{'start':'开始','center':'中间','end':'结束'},'gradientFill':_0x5041ed(0x223),'settingsLabels':{'switchToRowOrColumn':_0x5041ed(0x1ae),'useAsCategoryLabels':'将\x20{0}\x20作为类别','showEmptyCellsAs':_0x5041ed(0x21d)},'positionType':{'auto':'自动','inside':'内部','outside':'外部','top':'顶部','bottom':'底部','left':'左侧','right':'右侧','hide':'隐藏'},'align':{'left':'左对齐','center':'居中','right':_0x5041ed(0x1d2)},'alignY':{'top':'顶部','middle':'居中','bottom':'底部'},'chartStyle':'图表样式','chartAndAxisTitles':'图表和轴标题','legend':'图例','legendSelectMode':_0x5041ed(0x1e9),'legendSelectModeType':{'single':'单选','multiple':'多选','close':'关闭'},'legendVisualMapType':{'continuous':'连续','piecewise':'分段'},'axes':{'axis':'轴','axisOptions':_0x5041ed(0x1c9),'horizontalAxis':'横轴','verticalAxis':'纵轴','rightVerticalAxis':_0x5041ed(0x1ac),'leftAxis':'左轴','rightAxis':'右轴','useRightAxis':'使用右轴'},'position':'位置','dataLabels':_0x5041ed(0x1b7),'gridlinesAndTicks':_0x5041ed(0x1b0),'indicatorLine':'指示线','indicatorLineType':_0x5041ed(0x231),'indicatorLineColor':_0x5041ed(0x1c3),'indicatorLabel':'标签颜色','indicatorValue':'文本颜色','shape':{'polygon':_0x5041ed(0x1b8),'circle':'圆形','square':_0x5041ed(0x20d),'triangle':_0x5041ed(0x22f),'diamond':'菱形','rect':'矩形','roundRect':_0x5041ed(0x1e7),'pin':'钉形','arrow':'箭头','none':'无','emptyCircle':_0x5041ed(0x1ef),'emptySquare':'空心正方形','emptyTriangle':'空心三角形','emptyDiamond':'空心菱形','emptyRect':'空心矩形','emptyRoundRect':_0x5041ed(0x20e),'emptyPin':_0x5041ed(0x1f7),'emptyArrow':_0x5041ed(0x1d0)},'border':'边框','value':'值','fill':'填充','line':'线条','withOpacity':_0x5041ed(0x1d1),'withColor':'{0}颜色','withThickness':_0x5041ed(0x1b3),'withType':'{0}类型','withSize':'{0}大小','withShape':_0x5041ed(0x214),'withFormat':_0x5041ed(0x235),'dataPoint':_0x5041ed(0x1b5),'dataNodeShape':_0x5041ed(0x1c0),'addDataPoint':'添加数据点','point':_0x5041ed(0x1b5),'percentage':_0x5041ed(0x1fb),'lineType':{'line':'折线','smooth':'平滑','step':'阶梯'},'stackType':{'stack':'堆叠','percent':_0x5041ed(0x1f9)},'lineDashType':'线类型','dashType':{'solid':'实线','dash':'虚线','dot':'点线'},'color':'颜色','gridlines':{'majorGridlines':_0x5041ed(0x1b9),'text':_0x5041ed(0x22d)},'ticks':{'majorTick':_0x5041ed(0x232),'tickPosition':_0x5041ed(0x21b),'tickLength':_0x5041ed(0x1b1)},'none':'无','theIndexItem':_0x5041ed(0x1fd),'seriesDefaultName':_0x5041ed(0x216),'categoryDefaultName':'类别\x20{0}','styleEditPanel':{'showLabels':_0x5041ed(0x1b2),'showDataLabels':_0x5041ed(0x203),'padAngle':'扇形间距','halfPie':'半饼','rosePie':_0x5041ed(0x21e),'pieValScale':'数值比例','pieValSuffix':'数值后缀','pieDigitalFixed':'小数位数','showLabelLine':_0x5041ed(0x1ad),'reverseAxisOrder':_0x5041ed(0x1ea),'showAxisLine':'显示轴线','labelPosition':'标签位置','labelText':_0x5041ed(0x1c7),'repeatWordCould':_0x5041ed(0x207),'gap':'间隔','useAbsValue':_0x5041ed(0x1ed),'labelRotate':_0x5041ed(0x1be),'wordCloudShape':_0x5041ed(0x204),'useDateAxis':_0x5041ed(0x1d3),'dateAxisTips':_0x5041ed(0x237)},'radar':{'fill':'填充'},'doughnutHole':_0x5041ed(0x1d4),'msg':{'invalidSource':'图表数据源必须包含多于1行和1列。','emptyTips':_0x5041ed(0x201),'sankeyCircularTips':_0x5041ed(0x1f1)},'cloud':{'title':'词云','word':'词语','frequency':'频率'},'trendline':{'name':_0x5041ed(0x202),'displayName':_0x5041ed(0x1e8),'addTrendLine':_0x5041ed(0x228),'trendlineType':_0x5041ed(0x1fe),'trendlineName':_0x5041ed(0x1e8),'trendlineColor':_0x5041ed(0x1e2),'trendlineThickness':_0x5041ed(0x219),'trendlineDashType':_0x5041ed(0x22a),'exp':'指数','linear':'线性','log':'对数','pow':'幂','movingAvg':_0x5041ed(0x210),'poly':_0x5041ed(0x1f0),'order':_0x5041ed(0x229),'period':_0x5041ed(0x1de),'showFormula':_0x5041ed(0x21c),'showR2':'显示R平方','formula':'公式','r2':'R平方'},'bubble':{'xAxis':'X轴','yAxis':'Y轴','size':_0x5041ed(0x1bf),'label':_0x5041ed(0x1e6),'emptyTips':'气泡图至少需要2列,X轴、Y轴。'},'relation':{'title':_0x5041ed(0x1cf),'auto':'自动','circular':'环形','force':'力导向','useValueAsSymbolSize':_0x5041ed(0x1dc),'layoutType':'布局类型','forceOptions':'力导向选项','repulsion':'斥力','gravity':'引力','edgeLength':_0x5041ed(0x1f4),'rotateLabel':'旋转标签','emphasis':_0x5041ed(0x1c6),'emptyTips':'关系图数据源为额外添加类型列在第二列的共词矩阵'},'waterfall':{'stackType':'堆叠方式','arrangement':'依序','stacked':'堆积','positive':'正值','negative':'负值','subtotal':'小计','showSubtotal':_0x5041ed(0x1cc),'positiveStyle':'正值样式','negativeStyle':_0x5041ed(0x20f),'subtotalStyle':_0x5041ed(0x22c),'positiveLegendText':_0x5041ed(0x20b),'negativeLegendText':_0x5041ed(0x208),'subtotalLegendText':_0x5041ed(0x20c)},'pareto':{'lineName':'累积占比','lineSeries':_0x5041ed(0x236),'barSeries':_0x5041ed(0x224)},'visualMapScope':'视觉映射范围','boxplot':{'min':_0x5041ed(0x233),'q1':_0x5041ed(0x226),'median':_0x5041ed(0x21a),'q3':_0x5041ed(0x1ec),'max':_0x5041ed(0x218)},'chartTypes':{'line':'折线图','area':'面积图','areaStacked':_0x5041ed(0x1c1),'areaPercentStacked':_0x5041ed(0x1ca),'column':_0x5041ed(0x221),'bar':_0x5041ed(0x1f3),'barStacked':_0x5041ed(0x1eb),'barPercentStacked':'百分比堆叠条形图','pie':'饼图','donut':_0x5041ed(0x1e5),'scatter':_0x5041ed(0x211),'radar':_0x5041ed(0x1bd),'bubble':_0x5041ed(0x225),'stock':_0x5041ed(0x212),'combination':'组合图','wordCloud':_0x5041ed(0x1bb),'funnel':_0x5041ed(0x1df),'relation':_0x5041ed(0x1cf),'waterfall':_0x5041ed(0x1f2),'pareto':_0x5041ed(0x1cd),'sankey':_0x5041ed(0x1b4),'heatmap':_0x5041ed(0x1bc),'boxplot':'箱线图'},'dialog':{'numfmt':{'general':'常规','accounting':'会计','currency':'货币','date':'日期','thousandthPercentile':_0x5041ed(0x22e),'fieldSetting':_0x5041ed(0x1fa),'formatTypes':_0x5041ed(0x1e1),'confirm':'确定','cancel':'取消','generalDesc':_0x5041ed(0x206),'accountingDesc':'会计数字格式可对一列数值进行货币符号和小数点对齐。','currencyDesc':_0x5041ed(0x209),'dateDesc':_0x5041ed(0x1d7),'thousandthPercentileDesc':_0x5041ed(0x1d9),'decimalPlaces':_0x5041ed(0x1ee),'currencyTypes':_0x5041ed(0x1d8),'negativeNumberTypes':_0x5041ed(0x220),'dateTypes':_0x5041ed(0x1e3)},'setFormat':_0x5041ed(0x1ce)}}};function _0x3b59(_0x4ca9ad,_0x4298f4){_0x4ca9ad=_0x4ca9ad-0x1ab;const _0x4bed53=_0x4bed();let _0x3b59d5=_0x4bed53[_0x4ca9ad];return _0x3b59d5;}export{e as default};
@@ -1 +1 @@
1
- const _0x239176=_0x460e;function _0x460e(_0xfd6b5c,_0x40da95){_0xfd6b5c=_0xfd6b5c-0x1c4;const _0x465cdc=_0x465c();let _0x460e3b=_0x465cdc[_0xfd6b5c];return _0x460e3b;}function _0x465c(){const _0x2a9fc6=['趨勢線','詞雲形狀','標題對齊','開啟選中淡入特效','千分位符','標籤文本','{0}\x20格式','635430ILFCNB','線類型','漏斗圖','雷達圖','排列圖','標籤旋轉','55635BPhtQw','主網格線','圖表和軸標題','空心圓角矩形','垂直軸','X軸標題','顯示標籤線','環形圖','副標題','熱力圖','切換列或欄','扇形間距','144HjTxfQ','中位數','氣泡圖','顯示空單元格為','數據點','空心正方形','{0}\x20大小','背景顏色','視覺映射範圍','節點形狀','散點圖','所有系列','逆序軸','重複詞雲標籤','力導向選項','會計數字格式可對一列數值進行貨幣符號和小數點對齊。','趨勢線粗細','顯示數據標籤','氣泡標籤','小計樣式','設置標籤格式','刻度線位置','水平軸','空心圓形','主標題','顯示標籤','請先添加系列開始數據可視化','正方形','網格線','力導向','三角形','自定義圖表','設置圖表','添加趨勢線','13993875xEjFnS','漸變填充','多項式','數據點樣式','1982256tXoBdQ','網格線和刻度線','日期類型','主刻度線','趨勢線顏色','格式類型','数值比例','Y軸標題','氣泡圖至少需要2欄,X軸、Y軸。','圓角矩形','圖例選擇模式','多項式階數','日期軸僅在數據全部為日期格式時可用','{0}\x20形狀','佈局類型','第一四分位數','顯示小計','折線圖','顯示軸線','右垂直軸','移動平均','使用絕對值','類別\x20{0}','趨勢線名稱','組合圖','指示值','面積圖','使用日期軸','7147840zQkISc','空心針形','累積占比系列','圓環孔','瀑布圖','小數位數','數據標籤','百分比堆疊條形圖','圖表數據源必須包含多於1列和1欄。','負值樣式','插入圖表','日期格式將日期和時間系列數值顯示為日期值。','關係圖','指示線','空心矩形','標題位置','該範圍已被保護,目前無編輯權限。如需編輯,請聯絡創建者。\x20','使用值作為節點大小','堆疊條形圖','{0}\x20類型','使用右軸','圖表邊框顏色','顯示公式','字段設置','編輯圖表','1659079QxTCko','負值圖例文本','刻度線長度','空心菱形','5648244aMGsfJ','更多設置','節點距離','百分比堆疊','千分位符格式用於一般數字的表示,貨幣和會計格式則提供貨幣值計算的專用格式。','箱型圖','最大值','趨勢線線類型','左對齊','2rMOOEa','最小值','右Y軸標題','指示線類型','系列\x20{0}','詞雲圖','堆疊方式','玫瑰圖','累積占比','旋轉標籤','添加系列','使用\x20{0}\x20作為類別標籤','(空)','長條圖系列','標題格式','顯示R平方','負數類型'];_0x465c=function(){return _0x2a9fc6;};return _0x465c();}(function(_0x11502e,_0x254de1){const _0x406390=_0x460e,_0x3a69bb=_0x11502e();while(!![]){try{const _0x5b07fc=-parseInt(_0x406390(0x250))/0x1*(-parseInt(_0x406390(0x1cb))/0x2)+-parseInt(_0x406390(0x1e9))/0x3*(parseInt(_0x406390(0x1f5))/0x4)+parseInt(_0x406390(0x1e3))/0x5+-parseInt(_0x406390(0x21b))/0x6+parseInt(_0x406390(0x254))/0x7+parseInt(_0x406390(0x237))/0x8+-parseInt(_0x406390(0x217))/0x9;if(_0x5b07fc===_0x254de1)break;else _0x3a69bb['push'](_0x3a69bb['shift']());}catch(_0x27a8f9){_0x3a69bb['push'](_0x3a69bb['shift']());}}}(_0x465c,0xe3f22));const e={'sheets-chart-ui':{'permission':{'editErr':_0x239176(0x247)},'insertChart':_0x239176(0x241),'editChart':_0x239176(0x24f),'openChartPanel':'打開圖表面板','deleteChart':'刪除圖表','hideChartPanel':'隱藏圖表面板','setupChart':_0x239176(0x215),'customChart':_0x239176(0x214),'default':'默認','reset':'重置','chartType':'圖表類型','themes':'主題','dataRange':'數據範圍','stack':'堆疊','category':'類別','aggregate':'聚合','allSeries':_0x239176(0x200),'series':'系列','addSeries':_0x239176(0x1d5),'moreSettings':_0x239176(0x255),'min':'最小值','max':_0x239176(0x1c8),'invalidType':{'gaps':'間隙','zero':'零','connectDataPointsWithStraightLines':'用直線連接數據點'},'blank':_0x239176(0x1d7),'seriesBlock':{'format':'格式','dataPointStyle':_0x239176(0x21a)},'backgroundColor':_0x239176(0x1fc),'chartBorderColor':_0x239176(0x24c),'titles':{'title':'標題','mainTitle':_0x239176(0x20d),'subTitle':_0x239176(0x1f1),'xAxisTitle':_0x239176(0x1ee),'yAxisTitle':_0x239176(0x222),'rightYAxisTitle':_0x239176(0x1cd),'titleFormat':_0x239176(0x1d9),'titleText':'標題文本','titlePosition':_0x239176(0x246),'titleAlign':_0x239176(0x1de)},'axisPositionType':{'start':'開始','center':'中間','end':'結束'},'gradientFill':_0x239176(0x218),'settingsLabels':{'switchToRowOrColumn':_0x239176(0x1f3),'useAsCategoryLabels':_0x239176(0x1d6),'showEmptyCellsAs':_0x239176(0x1f8)},'positionType':{'auto':'自動','inside':'內部','outside':'外部','top':'頂部','bottom':'底部','left':'左側','right':'右側','hide':'隱藏'},'align':{'left':_0x239176(0x1ca),'center':'居中','right':'右對齊'},'alignY':{'top':'頂部','middle':'中間','bottom':'底部'},'chartStyle':'圖表樣式','chartAndAxisTitles':_0x239176(0x1eb),'legend':'圖例','legendSelectMode':_0x239176(0x225),'legendSelectModeType':{'single':'單選','multiple':'多選','close':'關閉'},'legendVisualMapType':{'continuous':'連續','piecewise':'分段'},'axes':{'axis':'軸','axisOptions':'軸選項','horizontalAxis':_0x239176(0x20b),'verticalAxis':_0x239176(0x1ed),'rightVerticalAxis':_0x239176(0x22e),'leftAxis':'左軸','rightAxis':'右軸','useRightAxis':_0x239176(0x24b)},'position':'位置','dataLabels':_0x239176(0x23d),'gridlinesAndTicks':_0x239176(0x21c),'indicatorLine':_0x239176(0x244),'indicatorLineType':_0x239176(0x1ce),'indicatorLineColor':'指示線顏色','indicatorLabel':'指示標籤','indicatorValue':_0x239176(0x234),'shape':{'polygon':'多邊形','circle':'圓形','square':_0x239176(0x210),'triangle':_0x239176(0x213),'diamond':'菱形','rect':'矩形','roundRect':_0x239176(0x224),'pin':'針形','arrow':'箭頭','none':'無','emptyCircle':_0x239176(0x20c),'emptySquare':_0x239176(0x1fa),'emptyTriangle':'空心三角形','emptyDiamond':_0x239176(0x253),'emptyRect':_0x239176(0x245),'emptyRoundRect':_0x239176(0x1ec),'emptyPin':_0x239176(0x238),'emptyArrow':'空心箭頭'},'border':'邊框','value':'值','fill':'填充','line':'線條','withOpacity':'{0}\x20透明度','withColor':'{0}\x20顏色','withThickness':'{0}\x20粗細','withType':_0x239176(0x24a),'withSize':_0x239176(0x1fb),'withShape':_0x239176(0x228),'withFormat':_0x239176(0x1e2),'dataPoint':'數據點','dataNodeShape':_0x239176(0x1fe),'addDataPoint':'添加數據點','point':_0x239176(0x1f9),'percentage':'百分比','lineType':{'line':'折線','smooth':'平滑','step':'階梯'},'stackType':{'stack':'堆疊','percent':_0x239176(0x1c5)},'lineDashType':_0x239176(0x1e4),'dashType':{'solid':'實線','dash':'虛線','dot':'點線'},'color':'顏色','gridlines':{'majorGridlines':_0x239176(0x1ea),'text':_0x239176(0x211)},'ticks':{'majorTick':_0x239176(0x21e),'tickPosition':_0x239176(0x20a),'tickLength':_0x239176(0x252)},'none':'無','theIndexItem':'第\x20{0}\x20項','seriesDefaultName':_0x239176(0x1cf),'categoryDefaultName':_0x239176(0x231),'styleEditPanel':{'showLabels':_0x239176(0x20e),'showDataLabels':_0x239176(0x206),'padAngle':_0x239176(0x1f4),'halfPie':'半餅','rosePie':_0x239176(0x1d2),'pieValScale':_0x239176(0x221),'pieValSuffix':'数值后缀','pieDigitalFixed':_0x239176(0x23c),'showLabelLine':_0x239176(0x1ef),'reverseAxisOrder':_0x239176(0x201),'showAxisLine':_0x239176(0x22d),'labelPosition':'標籤位置','labelText':_0x239176(0x1e1),'repeatWordCould':_0x239176(0x202),'gap':'間隔','useAbsValue':_0x239176(0x230),'labelRotate':_0x239176(0x1e8),'wordCloudShape':_0x239176(0x1dd),'useDateAxis':_0x239176(0x236),'dateAxisTips':_0x239176(0x227)},'radar':{'fill':'填充'},'doughnutHole':_0x239176(0x23a),'msg':{'invalidSource':_0x239176(0x23f),'emptyTips':_0x239176(0x20f),'sankeyCircularTips':'桑基圖不能包含循環數據'},'cloud':{'title':'詞雲','word':'詞','frequency':'頻率'},'trendline':{'name':_0x239176(0x1dc),'displayName':_0x239176(0x232),'addTrendLine':_0x239176(0x216),'trendlineType':'趨勢線類型','trendlineName':'趨勢線名稱','trendlineColor':_0x239176(0x21f),'trendlineThickness':_0x239176(0x205),'trendlineDashType':_0x239176(0x1c9),'exp':'指數','linear':'線性','log':'對數','pow':'冪','movingAvg':_0x239176(0x22f),'poly':_0x239176(0x219),'order':_0x239176(0x226),'period':'移動平均周期','showFormula':_0x239176(0x24d),'showR2':_0x239176(0x1da),'formula':'公式','r2':'R平方'},'bubble':{'xAxis':'X軸','yAxis':'Y軸','size':'氣泡大小','label':_0x239176(0x207),'emptyTips':_0x239176(0x223)},'relation':{'title':'關係圖','auto':'自動','circular':'環形','force':_0x239176(0x212),'useValueAsSymbolSize':_0x239176(0x248),'layoutType':_0x239176(0x229),'forceOptions':_0x239176(0x203),'repulsion':'斥力','gravity':'引力','edgeLength':_0x239176(0x1c4),'rotateLabel':_0x239176(0x1d4),'emphasis':_0x239176(0x1df),'emptyTips':'關係圖資料來源為額外新增類型欄在第二欄的共詞矩陣'},'waterfall':{'stackType':_0x239176(0x1d1),'arrangement':'依序','stacked':'堆積','positive':'正值','negative':'負值','subtotal':'小計','showSubtotal':_0x239176(0x22b),'positiveStyle':'正值樣式','negativeStyle':_0x239176(0x240),'subtotalStyle':_0x239176(0x208),'positiveLegendText':'正值圖例文本','negativeLegendText':_0x239176(0x251),'subtotalLegendText':'小計圖例文本'},'pareto':{'lineName':_0x239176(0x1d3),'lineSeries':_0x239176(0x239),'barSeries':_0x239176(0x1d8)},'visualMapScope':_0x239176(0x1fd),'boxplot':{'min':_0x239176(0x1cc),'q1':_0x239176(0x22a),'median':_0x239176(0x1f6),'q3':'第三四分位數','max':'最大值'},'chartTypes':{'line':_0x239176(0x22c),'area':_0x239176(0x235),'areaStacked':'堆疊面積圖','areaPercentStacked':'百分比堆疊面積圖','column':'柱狀圖','bar':'條形圖','barStacked':_0x239176(0x249),'barPercentStacked':_0x239176(0x23e),'pie':'餅圖','donut':_0x239176(0x1f0),'scatter':_0x239176(0x1ff),'radar':_0x239176(0x1e6),'bubble':_0x239176(0x1f7),'stock':'股票圖','combination':_0x239176(0x233),'wordCloud':_0x239176(0x1d0),'funnel':_0x239176(0x1e5),'relation':_0x239176(0x243),'waterfall':_0x239176(0x23b),'pareto':_0x239176(0x1e7),'sankey':'桑基圖','heatmap':_0x239176(0x1f2),'boxplot':_0x239176(0x1c7)},'dialog':{'numfmt':{'general':'常規','accounting':'會計','currency':'貨幣','date':'日期','thousandthPercentile':_0x239176(0x1e0),'fieldSetting':_0x239176(0x24e),'formatTypes':_0x239176(0x220),'confirm':'確定','cancel':'取消','generalDesc':'常規格式不包含任何特定的數字格式。','accountingDesc':_0x239176(0x204),'currencyDesc':'貨幣格式用於表示一般貨幣數值,會計格式可以對一列數值進行小數點對齊。','dateDesc':_0x239176(0x242),'thousandthPercentileDesc':_0x239176(0x1c6),'decimalPlaces':'小數位數','currencyTypes':'貨幣類型','negativeNumberTypes':_0x239176(0x1db),'dateTypes':_0x239176(0x21d)},'setFormat':_0x239176(0x209)}}};export{e as default};
1
+ const _0x58a2a9=_0x8dc0;(function(_0x32eb48,_0x27afa9){const _0x3cd502=_0x8dc0,_0x296128=_0x32eb48();while(!![]){try{const _0xddef23=-parseInt(_0x3cd502(0x181))/0x1*(-parseInt(_0x3cd502(0x146))/0x2)+-parseInt(_0x3cd502(0x17a))/0x3*(parseInt(_0x3cd502(0x17d))/0x4)+parseInt(_0x3cd502(0x18c))/0x5+parseInt(_0x3cd502(0x1b4))/0x6*(-parseInt(_0x3cd502(0x162))/0x7)+-parseInt(_0x3cd502(0x16b))/0x8+-parseInt(_0x3cd502(0x1a1))/0x9*(parseInt(_0x3cd502(0x1a6))/0xa)+parseInt(_0x3cd502(0x1a4))/0xb;if(_0xddef23===_0x27afa9)break;else _0x296128['push'](_0x296128['shift']());}catch(_0x302ea6){_0x296128['push'](_0x296128['shift']());}}}(_0x5474,0xb4edd));function _0x8dc0(_0x4f9d20,_0x19db18){_0x4f9d20=_0x4f9d20-0x146;const _0x54742b=_0x5474();let _0x8dc040=_0x54742b[_0x4f9d20];return _0x8dc040;}const e={'sheets-chart-ui':{'permission':{'editErr':_0x58a2a9(0x1a2)},'insertChart':_0x58a2a9(0x168),'editChart':'編輯圖表','openChartPanel':_0x58a2a9(0x16c),'deleteChart':_0x58a2a9(0x17c),'exportImage':'匯出圖片','copy':'複製','hideChartPanel':_0x58a2a9(0x1b0),'setupChart':_0x58a2a9(0x1cc),'customChart':_0x58a2a9(0x188),'default':'默認','reset':'重置','chartType':_0x58a2a9(0x164),'themes':'主題','dataRange':_0x58a2a9(0x198),'stack':'堆疊','category':'類別','aggregate':'聚合','allSeries':'所有系列','series':'系列','addSeries':'添加系列','moreSettings':_0x58a2a9(0x15e),'min':_0x58a2a9(0x1a9),'max':_0x58a2a9(0x15f),'invalidType':{'gaps':'間隙','zero':'零','connectDataPointsWithStraightLines':_0x58a2a9(0x1d9)},'blank':_0x58a2a9(0x1a5),'seriesBlock':{'format':'格式','dataPointStyle':_0x58a2a9(0x1a8)},'backgroundColor':_0x58a2a9(0x180),'chartBorderColor':'圖表邊框顏色','titles':{'title':'標題','mainTitle':_0x58a2a9(0x16a),'subTitle':_0x58a2a9(0x163),'xAxisTitle':_0x58a2a9(0x16e),'yAxisTitle':_0x58a2a9(0x14e),'rightYAxisTitle':_0x58a2a9(0x19d),'titleFormat':_0x58a2a9(0x1ba),'titleText':_0x58a2a9(0x186),'titlePosition':_0x58a2a9(0x197),'titleAlign':'標題對齊'},'axisPositionType':{'start':'開始','center':'中間','end':'結束'},'gradientFill':_0x58a2a9(0x156),'settingsLabels':{'switchToRowOrColumn':'切換列或欄','useAsCategoryLabels':_0x58a2a9(0x1af),'showEmptyCellsAs':'顯示空單元格為'},'positionType':{'auto':'自動','inside':'內部','outside':'外部','top':'頂部','bottom':'底部','left':'左側','right':'右側','hide':'隱藏'},'align':{'left':_0x58a2a9(0x18e),'center':'居中','right':'右對齊'},'alignY':{'top':'頂部','middle':'中間','bottom':'底部'},'chartStyle':_0x58a2a9(0x1a3),'chartAndAxisTitles':_0x58a2a9(0x185),'legend':'圖例','legendSelectMode':_0x58a2a9(0x153),'legendSelectModeType':{'single':'單選','multiple':'多選','close':'關閉'},'legendVisualMapType':{'continuous':'連續','piecewise':'分段'},'axes':{'axis':'軸','axisOptions':'軸選項','horizontalAxis':_0x58a2a9(0x1d7),'verticalAxis':_0x58a2a9(0x1d3),'rightVerticalAxis':_0x58a2a9(0x176),'leftAxis':'左軸','rightAxis':'右軸','useRightAxis':_0x58a2a9(0x15b)},'position':'位置','dataLabels':_0x58a2a9(0x199),'gridlinesAndTicks':_0x58a2a9(0x178),'indicatorLine':'指示線','indicatorLineType':'指示線類型','indicatorLineColor':_0x58a2a9(0x175),'indicatorLabel':_0x58a2a9(0x19f),'indicatorValue':'指示值','shape':{'polygon':_0x58a2a9(0x167),'circle':'圓形','square':'正方形','triangle':_0x58a2a9(0x14f),'diamond':'菱形','rect':'矩形','roundRect':'圓角矩形','pin':'針形','arrow':'箭頭','none':'無','emptyCircle':_0x58a2a9(0x187),'emptySquare':_0x58a2a9(0x189),'emptyTriangle':'空心三角形','emptyDiamond':_0x58a2a9(0x1ae),'emptyRect':_0x58a2a9(0x1b5),'emptyRoundRect':_0x58a2a9(0x193),'emptyPin':'空心針形','emptyArrow':'空心箭頭'},'border':'邊框','value':'值','fill':'填充','line':'線條','withOpacity':_0x58a2a9(0x150),'withColor':_0x58a2a9(0x15c),'withThickness':_0x58a2a9(0x1bc),'withType':'{0}\x20類型','withSize':_0x58a2a9(0x1d0),'withShape':'{0}\x20形狀','withFormat':'{0}\x20格式','dataPoint':_0x58a2a9(0x1cd),'dataNodeShape':_0x58a2a9(0x16d),'addDataPoint':'添加數據點','point':_0x58a2a9(0x1cd),'percentage':_0x58a2a9(0x1c0),'lineType':{'line':'折線','smooth':'平滑','step':'階梯'},'stackType':{'stack':'堆疊','percent':_0x58a2a9(0x179)},'lineDashType':'線類型','dashType':{'solid':'實線','dash':'虛線','dot':'點線'},'color':'顏色','gridlines':{'majorGridlines':_0x58a2a9(0x1ad),'text':_0x58a2a9(0x174)},'ticks':{'majorTick':_0x58a2a9(0x172),'tickPosition':_0x58a2a9(0x170),'tickLength':'刻度線長度'},'none':'無','theIndexItem':_0x58a2a9(0x1bb),'seriesDefaultName':_0x58a2a9(0x154),'categoryDefaultName':_0x58a2a9(0x194),'styleEditPanel':{'showLabels':_0x58a2a9(0x149),'showDataLabels':_0x58a2a9(0x1ac),'padAngle':'扇形間距','halfPie':'半餅','rosePie':'玫瑰圖','pieValScale':_0x58a2a9(0x19c),'pieValSuffix':_0x58a2a9(0x19e),'pieDigitalFixed':'小數位數','showLabelLine':_0x58a2a9(0x1c3),'reverseAxisOrder':_0x58a2a9(0x169),'showAxisLine':_0x58a2a9(0x14d),'labelPosition':_0x58a2a9(0x1c6),'labelText':_0x58a2a9(0x171),'repeatWordCould':'重複詞雲標籤','gap':'間隔','useAbsValue':_0x58a2a9(0x1aa),'labelRotate':_0x58a2a9(0x192),'wordCloudShape':_0x58a2a9(0x1bf),'useDateAxis':_0x58a2a9(0x1d1),'dateAxisTips':_0x58a2a9(0x18b)},'radar':{'fill':'填充'},'doughnutHole':_0x58a2a9(0x14b),'msg':{'invalidSource':'圖表數據源必須包含多於1列和1欄。','emptyTips':_0x58a2a9(0x165),'sankeyCircularTips':_0x58a2a9(0x160)},'cloud':{'title':'詞雲','word':'詞','frequency':'頻率'},'trendline':{'name':'趨勢線','displayName':_0x58a2a9(0x157),'addTrendLine':_0x58a2a9(0x1b6),'trendlineType':_0x58a2a9(0x1c2),'trendlineName':'趨勢線名稱','trendlineColor':_0x58a2a9(0x1d6),'trendlineThickness':_0x58a2a9(0x15a),'trendlineDashType':_0x58a2a9(0x155),'exp':'指數','linear':'線性','log':'對數','pow':'冪','movingAvg':_0x58a2a9(0x148),'poly':_0x58a2a9(0x17e),'order':_0x58a2a9(0x1cb),'period':_0x58a2a9(0x151),'showFormula':_0x58a2a9(0x1c9),'showR2':_0x58a2a9(0x14a),'formula':'公式','r2':_0x58a2a9(0x177)},'bubble':{'xAxis':'X軸','yAxis':'Y軸','size':_0x58a2a9(0x1a7),'label':_0x58a2a9(0x1b3),'emptyTips':_0x58a2a9(0x18f)},'relation':{'title':_0x58a2a9(0x19a),'auto':'自動','circular':'環形','force':_0x58a2a9(0x1be),'useValueAsSymbolSize':_0x58a2a9(0x1c5),'layoutType':_0x58a2a9(0x159),'forceOptions':_0x58a2a9(0x17f),'repulsion':'斥力','gravity':'引力','edgeLength':_0x58a2a9(0x152),'rotateLabel':_0x58a2a9(0x1ca),'emphasis':_0x58a2a9(0x1b9),'emptyTips':_0x58a2a9(0x1b7)},'waterfall':{'stackType':'堆疊方式','arrangement':'依序','stacked':'堆積','positive':'正值','negative':'負值','subtotal':'小計','showSubtotal':_0x58a2a9(0x1c8),'positiveStyle':_0x58a2a9(0x195),'negativeStyle':_0x58a2a9(0x15d),'subtotalStyle':_0x58a2a9(0x196),'positiveLegendText':_0x58a2a9(0x1b1),'negativeLegendText':_0x58a2a9(0x191),'subtotalLegendText':_0x58a2a9(0x184)},'pareto':{'lineName':_0x58a2a9(0x1ce),'lineSeries':_0x58a2a9(0x1a0),'barSeries':_0x58a2a9(0x16f)},'visualMapScope':'視覺映射範圍','boxplot':{'min':_0x58a2a9(0x1a9),'q1':_0x58a2a9(0x190),'median':_0x58a2a9(0x1c4),'q3':_0x58a2a9(0x161),'max':'最大值'},'chartTypes':{'line':_0x58a2a9(0x1b8),'area':_0x58a2a9(0x14c),'areaStacked':'堆疊面積圖','areaPercentStacked':_0x58a2a9(0x1bd),'column':_0x58a2a9(0x173),'bar':_0x58a2a9(0x1ab),'barStacked':_0x58a2a9(0x182),'barPercentStacked':'百分比堆疊條形圖','pie':'餅圖','donut':'環形圖','scatter':'散點圖','radar':_0x58a2a9(0x183),'bubble':'氣泡圖','stock':'股票圖','combination':'組合圖','wordCloud':_0x58a2a9(0x166),'funnel':_0x58a2a9(0x17b),'relation':_0x58a2a9(0x19a),'waterfall':'瀑布圖','pareto':_0x58a2a9(0x19b),'sankey':_0x58a2a9(0x1c7),'heatmap':_0x58a2a9(0x1b2),'boxplot':_0x58a2a9(0x158)},'dialog':{'numfmt':{'general':'常規','accounting':'會計','currency':'貨幣','date':'日期','thousandthPercentile':_0x58a2a9(0x1d4),'fieldSetting':_0x58a2a9(0x18d),'formatTypes':_0x58a2a9(0x147),'confirm':'確定','cancel':'取消','generalDesc':_0x58a2a9(0x1cf),'accountingDesc':_0x58a2a9(0x18a),'currencyDesc':_0x58a2a9(0x1d5),'dateDesc':'日期格式將日期和時間系列數值顯示為日期值。','thousandthPercentileDesc':'千分位符格式用於一般數字的表示,貨幣和會計格式則提供貨幣值計算的專用格式。','decimalPlaces':_0x58a2a9(0x1d8),'currencyTypes':'貨幣類型','negativeNumberTypes':_0x58a2a9(0x1d2),'dateTypes':'日期類型'},'setFormat':_0x58a2a9(0x1c1)}}};export{e as default};function _0x5474(){const _0x2929a5=['主刻度線','柱狀圖','網格線','指示線顏色','右垂直軸','R平方','網格線和刻度線','百分比堆疊','2724591REArDM','漏斗圖','刪除圖表','4NmouZc','多項式','力導向選項','背景顏色','1sWeGSi','堆疊條形圖','雷達圖','小計圖例文本','圖表和軸標題','標題文本','空心圓形','自定義圖表','空心正方形','會計數字格式可對一列數值進行貨幣符號和小數點對齊。','日期軸僅在數據全部為日期格式時可用','4646515oVgVqG','字段設置','左對齊','氣泡圖至少需要2欄,X軸、Y軸。','第一四分位數','負值圖例文本','標籤旋轉','空心圓角矩形','類別\x20{0}','正值樣式','小計樣式','標題位置','數據範圍','數據標籤','關係圖','排列圖','数值比例','右Y軸標題','数值后缀','指示標籤','累積占比系列','6264963Sixvbn','該範圍已被保護,目前無編輯權限。如需編輯,請聯絡創建者。\x20','圖表樣式','1182665QyKmGI','(空)','10qUnKcy','氣泡大小','數據點樣式','最小值','使用絕對值','條形圖','顯示數據標籤','主網格線','空心菱形','使用\x20{0}\x20作為類別標籤','隱藏圖表面板','正值圖例文本','熱力圖','氣泡標籤','2592uDWsDj','空心矩形','添加趨勢線','關係圖資料來源為額外新增類型欄在第二欄的共詞矩陣','折線圖','開啟選中淡入特效','標題格式','第\x20{0}\x20項','{0}\x20粗細','百分比堆疊面積圖','力導向','詞雲形狀','百分比','設置標籤格式','趨勢線類型','顯示標籤線','中位數','使用值作為節點大小','標籤位置','桑基圖','顯示小計','顯示公式','旋轉標籤','多項式階數','設置圖表','數據點','累積占比','常規格式不包含任何特定的數字格式。','{0}\x20大小','使用日期軸','負數類型','垂直軸','千分位符','貨幣格式用於表示一般貨幣數值,會計格式可以對一列數值進行小數點對齊。','趨勢線顏色','水平軸','小數位數','用直線連接數據點','2785114vKmWcO','格式類型','移動平均','顯示標籤','顯示R平方','圓環孔','面積圖','顯示軸線','Y軸標題','三角形','{0}\x20透明度','移動平均周期','節點距離','圖例選擇模式','系列\x20{0}','趨勢線線類型','漸變填充','趨勢線名稱','箱型圖','佈局類型','趨勢線粗細','使用右軸','{0}\x20顏色','負值樣式','更多設置','最大值','桑基圖不能包含循環數據','第三四分位數','1309kxdWOX','副標題','圖表類型','請先添加系列開始數據可視化','詞雲圖','多邊形','插入圖表','逆序軸','主標題','25616jcBVRv','打開圖表面板','節點形狀','X軸標題','長條圖系列','刻度線位置','標籤文本'];_0x5474=function(){return _0x2929a5;};return _0x5474();}
@@ -1 +1 @@
1
- function _0x50f3(_0x5d2b47,_0x33421b){_0x5d2b47=_0x5d2b47-0xe7;const _0x41cd1b=_0x41cd();let _0x50f3f7=_0x41cd1b[_0x5d2b47];return _0x50f3f7;}const _0xe7b569=_0x50f3;(function(_0x12e72a,_0x5e4667){const _0x380447=_0x50f3,_0x99cff0=_0x12e72a();while(!![]){try{const _0x2b0394=parseInt(_0x380447(0xf0))/0x1*(parseInt(_0x380447(0x153))/0x2)+parseInt(_0x380447(0xea))/0x3+parseInt(_0x380447(0x12d))/0x4*(parseInt(_0x380447(0x16e))/0x5)+parseInt(_0x380447(0xf5))/0x6*(-parseInt(_0x380447(0x148))/0x7)+-parseInt(_0x380447(0x138))/0x8*(-parseInt(_0x380447(0x111))/0x9)+-parseInt(_0x380447(0xee))/0xa+parseInt(_0x380447(0x112))/0xb;if(_0x2b0394===_0x5e4667)break;else _0x99cff0['push'](_0x99cff0['shift']());}catch(_0x41d9c6){_0x99cff0['push'](_0x99cff0['shift']());}}}(_0x41cd,0x9a800));function _0x41cd(){const _0x4b4d9c=['趨勢線顏色','指示線','圖表樣式','標題對齊','視覺映射範圍','刪除圖表','關係圖','散點圖','負值樣式','標籤旋轉','背景顏色','網格線和刻度線','切換列或欄','3294mGAbQx','1049444CeczxZ','力導向選項','使用日期軸','圓角矩形','設置標籤格式','圖表類型','累積占比','多邊形','第三四分位數','貨幣格式用於表示一般貨幣數值,會計格式可以對一列數值進行小數點對齊。','趨勢線','趨勢線類型','空心箭頭','標題位置','節點距離','堆疊條形圖','漸變填充','所有系列','顯示標籤','空心菱形','顯示R平方','瀑布圖','標題文本','該範圍已被保護,目前無編輯權限。如需編輯,請聯絡創建者。\x20','水平軸','自定義圖表','標籤位置','794620HOokPn','趨勢線線類型','股票圖','使用絕對值','{0}\x20顏色','百分比堆疊','顯示數據標籤','三角形','累積占比系列','百分比','圖例選擇模式','13528HBpois','顯示標籤線','使用右軸','添加趨勢線','空心圓角矩形','右垂直軸','R平方','折線圖','第一四分位數','移動平均周期','中位數','桑基圖','系列\x20{0}','{0}\x20大小','多項式階數','貨幣類型','35QWsRLT','關係圖資料來源為額外新增類型欄在第二欄的共詞矩陣','顯示公式','設置圖表','小計樣式','正值樣式','數據點','日期軸僅在數據全部為日期格式時可用','線類型','圖表數據源必須包含多於1列和1欄。','{0}\x20形狀','796LEOXIU','漏斗圖','正值圖例文本','氣泡大小','長條圖系列','主刻度線','最大值','玫瑰圖','詞雲圖','刻度線位置','圖表邊框顏色','左對齊','桑基圖不能包含循環數據','條形圖','雷達圖','重複詞雲標籤','插入圖表','千分位符格式用於一般數字的表示,貨幣和會計格式則提供貨幣值計算的專用格式。','節點形狀','{0}\x20格式','數據範圍','刻度線長度','負值圖例文本','日期類型','用直線連接數據點','標題格式','指示線類型','10waehMw','使用值作為節點大小','顯示小計','空心正方形','力導向','數據點樣式','指示線顏色','佈局類型','移動平均','最小值','字段設置','正方形','堆疊面積圖','X軸標題','Y軸標題','柱狀圖','788595nMcdeG','組合圖','更多設置','打開圖表面板','265880uCdXkU','百分比堆疊條形圖','895ENxzLA','第\x20{0}\x20','圖表和軸標題','逆序軸','添加系列','1285530wpfEUx','空心針形','数值比例','主網格線','空心圓形','趨勢線名稱','開啟選中淡入特效','小數位數','氣泡標籤','主標題','標籤文本','使用\x20{0}\x20作為類別標籤','隱藏圖表面板','千分位符','日期格式將日期和時間系列數值顯示為日期值。'];_0x41cd=function(){return _0x4b4d9c;};return _0x41cd();}const e={'sheets-chart-ui':{'permission':{'editErr':_0xe7b569(0x129)},'insertChart':_0xe7b569(0x163),'editChart':'編輯圖表','openChartPanel':_0xe7b569(0xed),'deleteChart':_0xe7b569(0x109),'hideChartPanel':_0xe7b569(0x101),'setupChart':_0xe7b569(0x14b),'customChart':_0xe7b569(0x12b),'default':'默認','reset':'重置','chartType':_0xe7b569(0x117),'themes':'主題','dataRange':_0xe7b569(0x167),'stack':'堆疊','category':'類別','aggregate':'聚合','allSeries':_0xe7b569(0x123),'series':'系列','addSeries':_0xe7b569(0xf4),'moreSettings':_0xe7b569(0xec),'min':_0xe7b569(0x177),'max':_0xe7b569(0x159),'invalidType':{'gaps':'間隙','zero':'零','connectDataPointsWithStraightLines':_0xe7b569(0x16b)},'blank':'()','seriesBlock':{'format':'格式','dataPointStyle':_0xe7b569(0x173)},'backgroundColor':_0xe7b569(0x10e),'chartBorderColor':_0xe7b569(0x15d),'titles':{'title':'標題','mainTitle':_0xe7b569(0xfe),'subTitle':'副標題','xAxisTitle':_0xe7b569(0xe7),'yAxisTitle':_0xe7b569(0xe8),'rightYAxisTitle':'右Y軸標題','titleFormat':_0xe7b569(0x16c),'titleText':_0xe7b569(0x128),'titlePosition':_0xe7b569(0x11f),'titleAlign':_0xe7b569(0x107)},'axisPositionType':{'start':'開始','center':'中間','end':'結束'},'gradientFill':_0xe7b569(0x122),'settingsLabels':{'switchToRowOrColumn':_0xe7b569(0x110),'useAsCategoryLabels':_0xe7b569(0x100),'showEmptyCellsAs':'顯示空單元格為'},'positionType':{'auto':'自動','inside':'內部','outside':'外部','top':'頂部','bottom':'底部','left':'左側','right':'右側','hide':'隱藏'},'align':{'left':_0xe7b569(0x15e),'center':'居中','right':'右對齊'},'alignY':{'top':'頂部','middle':'中間','bottom':'底部'},'chartStyle':_0xe7b569(0x106),'chartAndAxisTitles':_0xe7b569(0xf2),'legend':'圖例','legendSelectMode':_0xe7b569(0x137),'legendSelectModeType':{'single':'單選','multiple':'多選','close':'關閉'},'legendVisualMapType':{'continuous':'連續','piecewise':'分段'},'axes':{'axis':'軸','axisOptions':'軸選項','horizontalAxis':_0xe7b569(0x12a),'verticalAxis':'垂直軸','rightVerticalAxis':_0xe7b569(0x13d),'leftAxis':'左軸','rightAxis':'右軸','useRightAxis':_0xe7b569(0x13a)},'position':'位置','dataLabels':'數據標籤','gridlinesAndTicks':_0xe7b569(0x10f),'indicatorLine':_0xe7b569(0x105),'indicatorLineType':_0xe7b569(0x16d),'indicatorLineColor':_0xe7b569(0x174),'indicatorLabel':'指示標籤','indicatorValue':'指示值','shape':{'polygon':_0xe7b569(0x119),'circle':'圓形','square':_0xe7b569(0x179),'triangle':_0xe7b569(0x134),'diamond':'菱形','rect':'矩形','roundRect':_0xe7b569(0x115),'pin':'針形','arrow':'箭頭','none':'無','emptyCircle':_0xe7b569(0xf9),'emptySquare':_0xe7b569(0x171),'emptyTriangle':'空心三角形','emptyDiamond':_0xe7b569(0x125),'emptyRect':'空心矩形','emptyRoundRect':_0xe7b569(0x13c),'emptyPin':_0xe7b569(0xf6),'emptyArrow':_0xe7b569(0x11e)},'border':'邊框','value':'值','fill':'填充','line':'線條','withOpacity':'{0}\x20透明度','withColor':_0xe7b569(0x131),'withThickness':'{0}\x20粗細','withType':'{0}\x20類型','withSize':_0xe7b569(0x145),'withShape':_0xe7b569(0x152),'withFormat':_0xe7b569(0x166),'dataPoint':'數據點','dataNodeShape':_0xe7b569(0x165),'addDataPoint':'添加數據點','point':_0xe7b569(0x14e),'percentage':_0xe7b569(0x136),'lineType':{'line':'折線','smooth':'平滑','step':'階梯'},'stackType':{'stack':'堆疊','percent':_0xe7b569(0x132)},'lineDashType':_0xe7b569(0x150),'dashType':{'solid':'實線','dash':'虛線','dot':'點線'},'color':'顏色','gridlines':{'majorGridlines':_0xe7b569(0xf8),'text':'網格線'},'ticks':{'majorTick':_0xe7b569(0x158),'tickPosition':_0xe7b569(0x15c),'tickLength':_0xe7b569(0x168)},'none':'無','theIndexItem':_0xe7b569(0xf1),'seriesDefaultName':_0xe7b569(0x144),'categoryDefaultName':'類別\x20{0}','styleEditPanel':{'showLabels':_0xe7b569(0x124),'showDataLabels':_0xe7b569(0x133),'padAngle':'扇形間距','halfPie':'半餅','rosePie':_0xe7b569(0x15a),'pieValScale':_0xe7b569(0xf7),'pieValSuffix':'数值后缀','pieDigitalFixed':_0xe7b569(0xfc),'showLabelLine':_0xe7b569(0x139),'reverseAxisOrder':_0xe7b569(0xf3),'showAxisLine':'顯示軸線','labelPosition':_0xe7b569(0x12c),'labelText':_0xe7b569(0xff),'repeatWordCould':_0xe7b569(0x162),'gap':'間隔','useAbsValue':_0xe7b569(0x130),'labelRotate':_0xe7b569(0x10d),'wordCloudShape':'詞雲形狀','useDateAxis':_0xe7b569(0x114),'dateAxisTips':_0xe7b569(0x14f)},'radar':{'fill':'填充'},'doughnutHole':'圓環孔','msg':{'invalidSource':_0xe7b569(0x151),'emptyTips':'請先添加系列開始數據可視化','sankeyCircularTips':_0xe7b569(0x15f)},'cloud':{'title':'詞雲','word':'詞','frequency':'頻率'},'trendline':{'name':_0xe7b569(0x11c),'displayName':_0xe7b569(0xfa),'addTrendLine':_0xe7b569(0x13b),'trendlineType':_0xe7b569(0x11d),'trendlineName':_0xe7b569(0xfa),'trendlineColor':_0xe7b569(0x104),'trendlineThickness':'趨勢線粗細','trendlineDashType':_0xe7b569(0x12e),'exp':'指數','linear':'線性','log':'對數','pow':'冪','movingAvg':_0xe7b569(0x176),'poly':'多項式','order':_0xe7b569(0x146),'period':_0xe7b569(0x141),'showFormula':_0xe7b569(0x14a),'showR2':_0xe7b569(0x126),'formula':'公式','r2':_0xe7b569(0x13e)},'bubble':{'xAxis':'X軸','yAxis':'Y軸','size':_0xe7b569(0x156),'label':_0xe7b569(0xfd),'emptyTips':'氣泡圖至少需要2欄,X軸、Y軸。'},'relation':{'title':_0xe7b569(0x10a),'auto':'自動','circular':'環形','force':_0xe7b569(0x172),'useValueAsSymbolSize':_0xe7b569(0x16f),'layoutType':_0xe7b569(0x175),'forceOptions':_0xe7b569(0x113),'repulsion':'斥力','gravity':'引力','edgeLength':_0xe7b569(0x120),'rotateLabel':'旋轉標籤','emphasis':_0xe7b569(0xfb),'emptyTips':_0xe7b569(0x149)},'waterfall':{'stackType':'堆疊方式','arrangement':'依序','stacked':'堆積','positive':'正值','negative':'負值','subtotal':'小計','showSubtotal':_0xe7b569(0x170),'positiveStyle':_0xe7b569(0x14d),'negativeStyle':_0xe7b569(0x10c),'subtotalStyle':_0xe7b569(0x14c),'positiveLegendText':_0xe7b569(0x155),'negativeLegendText':_0xe7b569(0x169),'subtotalLegendText':'小計圖例文本'},'pareto':{'lineName':_0xe7b569(0x118),'lineSeries':_0xe7b569(0x135),'barSeries':_0xe7b569(0x157)},'visualMapScope':_0xe7b569(0x108),'boxplot':{'min':_0xe7b569(0x177),'q1':_0xe7b569(0x140),'median':_0xe7b569(0x142),'q3':_0xe7b569(0x11a),'max':_0xe7b569(0x159)},'chartTypes':{'line':_0xe7b569(0x13f),'area':'面積圖','areaStacked':_0xe7b569(0x17a),'areaPercentStacked':'百分比堆疊面積圖','column':_0xe7b569(0xe9),'bar':_0xe7b569(0x160),'barStacked':_0xe7b569(0x121),'barPercentStacked':_0xe7b569(0xef),'pie':'餅圖','donut':'環形圖','scatter':_0xe7b569(0x10b),'radar':_0xe7b569(0x161),'bubble':'氣泡圖','stock':_0xe7b569(0x12f),'combination':_0xe7b569(0xeb),'wordCloud':_0xe7b569(0x15b),'funnel':_0xe7b569(0x154),'relation':_0xe7b569(0x10a),'waterfall':_0xe7b569(0x127),'pareto':'排列圖','sankey':_0xe7b569(0x143),'heatmap':'熱力圖','boxplot':'箱型圖'},'dialog':{'numfmt':{'general':'常規','accounting':'會計','currency':'貨幣','date':'日期','thousandthPercentile':_0xe7b569(0x102),'fieldSetting':_0xe7b569(0x178),'formatTypes':'格式類型','confirm':'確定','cancel':'取消','generalDesc':'常規格式不包含任何特定的數字格式。','accountingDesc':'會計數字格式可對一列數值進行貨幣符號和小數點對齊。','currencyDesc':_0xe7b569(0x11b),'dateDesc':_0xe7b569(0x103),'thousandthPercentileDesc':_0xe7b569(0x164),'decimalPlaces':_0xe7b569(0xfc),'currencyTypes':_0xe7b569(0x147),'negativeNumberTypes':'負數類型','dateTypes':_0xe7b569(0x16a)},'setFormat':_0xe7b569(0x116)}}};export{e as default};
1
+ function _0x2e00(_0x48c9b1,_0x1d03a1){_0x48c9b1=_0x48c9b1-0xb4;const _0x46d260=_0x46d2();let _0x2e000e=_0x46d260[_0x48c9b1];return _0x2e000e;}const _0x7632=_0x2e00;function _0x46d2(){const _0xfa5c5f=['空心圓角矩形','X軸標題','趨勢線名稱','数值比例','編輯圖表','8FhUNbH','日期格式將日期和時間系列數值顯示為日期值。','排列圖','軸選項','402980owkvvn','5141044CuuFsF','圖表邊框顏色','顯示小計','正值圖例文本','趨勢線','環形圖','背景顏色','數據點','千分位符','第\x20{0}\x20項','節點距離','趨勢線顏色','百分比堆疊條形圖','趨勢線類型','線類型','百分比堆疊面積圖','逆序軸','移動平均周期','長條圖系列','打開圖表面板','數據範圍','指示線類型','趨勢線線類型','小數位數','堆疊方式','主網格線','桑基圖不能包含循環數據','面積圖','箱型圖','正方形','貨幣格式用於表示一般貨幣數值,會計格式可以對一列數值進行小數點對齊。','{0}\x20大小','插入圖表','顯示標籤線','添加趨勢線','最大值','漏斗圖','圖表樣式','右Y軸標題','顯示公式','百分比堆疊','系列\x20{0}','更多設置','組合圖','第一四分位數','漸變填充','右垂直軸','累積占比','熱力圖','詞雲圖','類別\x20{0}','堆疊條形圖','1ywjFWq','3180645UTbRQN','Y軸標題','設置標籤格式','正值樣式','圖例選擇模式','負值圖例文本','切換列或欄','{0}\x20類型','標題位置','右對齊','雷達圖','設置圖表','{0}\x20顏色','堆疊面積圖','垂直軸','散點圖','顯示標籤','旋轉標籤','日期類型','(空)','瀑布圖','使用日期軸','格式類型','玫瑰圖','常規格式不包含任何特定的數字格式。','621wvpCsN','使用右軸','力導向選項','氣泡標籤','會計數字格式可對一列數值進行貨幣符號和小數點對齊。','條形圖','顯示數據標籤','空心菱形','負數類型','顯示R平方','副標題','主標題','該範圍已被保護,目前無編輯權限。如需編輯,請聯絡創建者。\x20','氣泡圖','股票圖','多項式階數','添加系列','添加數據點','百分比','第三四分位數','力導向','9106212DlwYGh','桑基圖','累積占比系列','左對齊','使用值作為節點大小','{0}\x20格式','{0}\x20透明度','主刻度線','請先添加系列開始數據可視化','9402652RcrALP','使用絕對值','標籤文本','貨幣類型','2511951tyNqNw','標題對齊','日期軸僅在數據全部為日期格式時可用','氣泡大小','自定義圖表','顯示軸線','指示線','指示值','圖表類型','空心正方形','3597142XSmLtt','關係圖','中位數'];_0x46d2=function(){return _0xfa5c5f;};return _0x46d2();}(function(_0x1dd71b,_0x26cced){const _0x4561f2=_0x2e00,_0x46fd2e=_0x1dd71b();while(!![]){try{const _0x5a8010=-parseInt(_0x4561f2(0xfa))/0x1*(parseInt(_0x4561f2(0xb9))/0x2)+-parseInt(_0x4561f2(0x136))/0x3+parseInt(_0x4561f2(0xc6))/0x4+-parseInt(_0x4561f2(0xfb))/0x5+parseInt(_0x4561f2(0x129))/0x6+parseInt(_0x4561f2(0x132))/0x7*(-parseInt(_0x4561f2(0xc1))/0x8)+-parseInt(_0x4561f2(0x114))/0x9*(-parseInt(_0x4561f2(0xc5))/0xa);if(_0x5a8010===_0x26cced)break;else _0x46fd2e['push'](_0x46fd2e['shift']());}catch(_0x580fa3){_0x46fd2e['push'](_0x46fd2e['shift']());}}}(_0x46d2,0xec650));const e={'sheets-chart-ui':{'permission':{'editErr':_0x7632(0x120)},'insertChart':_0x7632(0xe6),'editChart':_0x7632(0xc0),'openChartPanel':_0x7632(0xd9),'deleteChart':'刪除圖表','exportImage':'匯出圖片','copy':'複製','hideChartPanel':'隱藏圖表面板','setupChart':_0x7632(0x106),'customChart':_0x7632(0x13a),'default':'默認','reset':'重置','chartType':_0x7632(0xb7),'themes':'主題','dataRange':_0x7632(0xda),'stack':'堆疊','category':'類別','aggregate':'聚合','allSeries':'所有系列','series':'系列','addSeries':_0x7632(0x124),'moreSettings':_0x7632(0xf0),'min':'最小值','max':_0x7632(0xe9),'invalidType':{'gaps':'間隙','zero':'零','connectDataPointsWithStraightLines':'用直線連接數據點'},'blank':_0x7632(0x10e),'seriesBlock':{'format':'格式','dataPointStyle':'數據點樣式'},'backgroundColor':_0x7632(0xcc),'chartBorderColor':_0x7632(0xc7),'titles':{'title':'標題','mainTitle':_0x7632(0x11f),'subTitle':_0x7632(0x11e),'xAxisTitle':_0x7632(0xbd),'yAxisTitle':_0x7632(0xfc),'rightYAxisTitle':_0x7632(0xec),'titleFormat':'標題格式','titleText':'標題文本','titlePosition':_0x7632(0x103),'titleAlign':_0x7632(0x137)},'axisPositionType':{'start':'開始','center':'中間','end':'結束'},'gradientFill':_0x7632(0xf3),'settingsLabels':{'switchToRowOrColumn':_0x7632(0x101),'useAsCategoryLabels':'使用\x20{0}\x20作為類別標籤','showEmptyCellsAs':'顯示空單元格為'},'positionType':{'auto':'自動','inside':'內部','outside':'外部','top':'頂部','bottom':'底部','left':'左側','right':'右側','hide':'隱藏'},'align':{'left':_0x7632(0x12c),'center':'居中','right':_0x7632(0x104)},'alignY':{'top':'頂部','middle':'中間','bottom':'底部'},'chartStyle':_0x7632(0xeb),'chartAndAxisTitles':'圖表和軸標題','legend':'圖例','legendSelectMode':_0x7632(0xff),'legendSelectModeType':{'single':'單選','multiple':'多選','close':'關閉'},'legendVisualMapType':{'continuous':'連續','piecewise':'分段'},'axes':{'axis':'軸','axisOptions':_0x7632(0xc4),'horizontalAxis':'水平軸','verticalAxis':_0x7632(0x109),'rightVerticalAxis':_0x7632(0xf4),'leftAxis':'左軸','rightAxis':'右軸','useRightAxis':_0x7632(0x115)},'position':'位置','dataLabels':'數據標籤','gridlinesAndTicks':'網格線和刻度線','indicatorLine':_0x7632(0xb5),'indicatorLineType':_0x7632(0xdb),'indicatorLineColor':'指示線顏色','indicatorLabel':'指示標籤','indicatorValue':_0x7632(0xb6),'shape':{'polygon':'多邊形','circle':'圓形','square':_0x7632(0xe3),'triangle':'三角形','diamond':'菱形','rect':'矩形','roundRect':'圓角矩形','pin':'針形','arrow':'箭頭','none':'無','emptyCircle':'空心圓形','emptySquare':_0x7632(0xb8),'emptyTriangle':'空心三角形','emptyDiamond':_0x7632(0x11b),'emptyRect':'空心矩形','emptyRoundRect':_0x7632(0xbc),'emptyPin':'空心針形','emptyArrow':'空心箭頭'},'border':'邊框','value':'值','fill':'填充','line':'線條','withOpacity':_0x7632(0x12f),'withColor':_0x7632(0x107),'withThickness':'{0}\x20粗細','withType':_0x7632(0x102),'withSize':_0x7632(0xe5),'withShape':'{0}\x20形狀','withFormat':_0x7632(0x12e),'dataPoint':_0x7632(0xcd),'dataNodeShape':'節點形狀','addDataPoint':_0x7632(0x125),'point':_0x7632(0xcd),'percentage':_0x7632(0x126),'lineType':{'line':'折線','smooth':'平滑','step':'階梯'},'stackType':{'stack':'堆疊','percent':_0x7632(0xee)},'lineDashType':_0x7632(0xd4),'dashType':{'solid':'實線','dash':'虛線','dot':'點線'},'color':'顏色','gridlines':{'majorGridlines':_0x7632(0xdf),'text':'網格線'},'ticks':{'majorTick':_0x7632(0x130),'tickPosition':'刻度線位置','tickLength':'刻度線長度'},'none':'無','theIndexItem':_0x7632(0xcf),'seriesDefaultName':_0x7632(0xef),'categoryDefaultName':_0x7632(0xf8),'styleEditPanel':{'showLabels':_0x7632(0x10b),'showDataLabels':_0x7632(0x11a),'padAngle':'扇形間距','halfPie':'半餅','rosePie':_0x7632(0x112),'pieValScale':_0x7632(0xbf),'pieValSuffix':'数值后缀','pieDigitalFixed':_0x7632(0xdd),'showLabelLine':_0x7632(0xe7),'reverseAxisOrder':_0x7632(0xd6),'showAxisLine':_0x7632(0xb4),'labelPosition':'標籤位置','labelText':_0x7632(0x134),'repeatWordCould':'重複詞雲標籤','gap':'間隔','useAbsValue':_0x7632(0x133),'labelRotate':'標籤旋轉','wordCloudShape':'詞雲形狀','useDateAxis':_0x7632(0x110),'dateAxisTips':_0x7632(0x138)},'radar':{'fill':'填充'},'doughnutHole':'圓環孔','msg':{'invalidSource':'圖表數據源必須包含多於1列和1欄。','emptyTips':_0x7632(0x131),'sankeyCircularTips':_0x7632(0xe0)},'cloud':{'title':'詞雲','word':'詞','frequency':'頻率'},'trendline':{'name':_0x7632(0xca),'displayName':_0x7632(0xbe),'addTrendLine':_0x7632(0xe8),'trendlineType':_0x7632(0xd3),'trendlineName':_0x7632(0xbe),'trendlineColor':_0x7632(0xd1),'trendlineThickness':'趨勢線粗細','trendlineDashType':_0x7632(0xdc),'exp':'指數','linear':'線性','log':'對數','pow':'冪','movingAvg':'移動平均','poly':'多項式','order':_0x7632(0x123),'period':_0x7632(0xd7),'showFormula':_0x7632(0xed),'showR2':_0x7632(0x11d),'formula':'公式','r2':'R平方'},'bubble':{'xAxis':'X軸','yAxis':'Y軸','size':_0x7632(0x139),'label':_0x7632(0x117),'emptyTips':'氣泡圖至少需要2欄,X軸、Y軸。'},'relation':{'title':'關係圖','auto':'自動','circular':'環形','force':_0x7632(0x128),'useValueAsSymbolSize':_0x7632(0x12d),'layoutType':'佈局類型','forceOptions':_0x7632(0x116),'repulsion':'斥力','gravity':'引力','edgeLength':_0x7632(0xd0),'rotateLabel':_0x7632(0x10c),'emphasis':'開啟選中淡入特效','emptyTips':'關係圖資料來源為額外新增類型欄在第二欄的共詞矩陣'},'waterfall':{'stackType':_0x7632(0xde),'arrangement':'依序','stacked':'堆積','positive':'正值','negative':'負值','subtotal':'小計','showSubtotal':_0x7632(0xc8),'positiveStyle':_0x7632(0xfe),'negativeStyle':'負值樣式','subtotalStyle':'小計樣式','positiveLegendText':_0x7632(0xc9),'negativeLegendText':_0x7632(0x100),'subtotalLegendText':'小計圖例文本'},'pareto':{'lineName':_0x7632(0xf5),'lineSeries':_0x7632(0x12b),'barSeries':_0x7632(0xd8)},'visualMapScope':'視覺映射範圍','boxplot':{'min':'最小值','q1':_0x7632(0xf2),'median':_0x7632(0xbb),'q3':_0x7632(0x127),'max':'最大值'},'chartTypes':{'line':'折線圖','area':_0x7632(0xe1),'areaStacked':_0x7632(0x108),'areaPercentStacked':_0x7632(0xd5),'column':'柱狀圖','bar':_0x7632(0x119),'barStacked':_0x7632(0xf9),'barPercentStacked':_0x7632(0xd2),'pie':'餅圖','donut':_0x7632(0xcb),'scatter':_0x7632(0x10a),'radar':_0x7632(0x105),'bubble':_0x7632(0x121),'stock':_0x7632(0x122),'combination':_0x7632(0xf1),'wordCloud':_0x7632(0xf7),'funnel':_0x7632(0xea),'relation':_0x7632(0xba),'waterfall':_0x7632(0x10f),'pareto':_0x7632(0xc3),'sankey':_0x7632(0x12a),'heatmap':_0x7632(0xf6),'boxplot':_0x7632(0xe2)},'dialog':{'numfmt':{'general':'常規','accounting':'會計','currency':'貨幣','date':'日期','thousandthPercentile':_0x7632(0xce),'fieldSetting':'字段設置','formatTypes':_0x7632(0x111),'confirm':'確定','cancel':'取消','generalDesc':_0x7632(0x113),'accountingDesc':_0x7632(0x118),'currencyDesc':_0x7632(0xe4),'dateDesc':_0x7632(0xc2),'thousandthPercentileDesc':'千分位符格式用於一般數字的表示,貨幣和會計格式則提供貨幣值計算的專用格式。','decimalPlaces':_0x7632(0xdd),'currencyTypes':_0x7632(0x135),'negativeNumberTypes':_0x7632(0x11c),'dateTypes':_0x7632(0x10d)},'setFormat':_0x7632(0xfd)}}};export{e as default};
@@ -0,0 +1,9 @@
1
+ import type { ICommand } from '@univerjs/core';
2
+ import type { IChartEditPanelRoute } from '../../services/chart-panel-route';
3
+ export interface IChartOpenFocusedChartPanelCommandParams {
4
+ route?: IChartEditPanelRoute;
5
+ }
6
+ export declare const ChartOpenFocusedChartPanelCommand: ICommand<IChartOpenFocusedChartPanelCommandParams>;
7
+ export declare const ChartCopyFocusedChartCommand: ICommand;
8
+ export declare const ChartExportFocusedChartImageCommand: ICommand;
9
+ export declare const ChartDeleteFocusedChartCommand: ICommand;
@@ -1,7 +1,9 @@
1
1
  import type { IOperation } from '@univerjs/core';
2
+ import type { IChartEditPanelRoute } from '../../services/chart-panel-route';
2
3
  export interface IChartOpenPanelOperationParams {
3
4
  unitId: string;
4
5
  subUnitId: string;
5
6
  drawingId: string;
7
+ route?: IChartEditPanelRoute;
6
8
  }
7
9
  export declare const ChartOpenPanelOperation: IOperation<IChartOpenPanelOperationParams>;
@@ -0,0 +1,6 @@
1
+ export declare const SHEETS_CHART_UI_PLUGIN_CONFIG_KEY = "sheets-chart-ui.config";
2
+ export declare const configSymbol: unique symbol;
3
+ export interface IUniverSheetsChartUIConfig {
4
+ enableChartElementFloatMenu?: boolean;
5
+ }
6
+ export declare const defaultPluginConfig: IUniverSheetsChartUIConfig;
@@ -0,0 +1,30 @@
1
+ import { ChartElementFloatMenuAdapterRegistry } from '@univerjs-pro/chart-ui';
2
+ import { ChartModelService } from '@univerjs-pro/sheets-chart';
3
+ import { Disposable, ICommandService } from '@univerjs/core';
4
+ import { SheetCanvasFloatDomManagerService } from '@univerjs/sheets-drawing-ui';
5
+ import { SheetCanvasPopManagerService } from '@univerjs/sheets-ui';
6
+ import { ChartRenderService } from '../services/chart-render.service';
7
+ import { IChartHostProviderService } from '../services/sheets-chart-host-provider.service';
8
+ import { ISheetsChartUIService } from '../services/sheets-chart-ui.service';
9
+ export declare class SheetsChartElementFloatMenuController extends Disposable {
10
+ private readonly _chartModelService;
11
+ private readonly _chartRenderService;
12
+ private readonly _chartHostProvider;
13
+ private readonly _sheetCanvasPopManagerService;
14
+ private readonly _sheetCanvasFloatDomManagerService;
15
+ private readonly _sheetsChartUIService;
16
+ private readonly _adapterRegistry;
17
+ private readonly _commandService;
18
+ private _popupDisposable;
19
+ private _popupChartId;
20
+ constructor(_chartModelService: ChartModelService, _chartRenderService: ChartRenderService, _chartHostProvider: IChartHostProviderService, _sheetCanvasPopManagerService: SheetCanvasPopManagerService, _sheetCanvasFloatDomManagerService: SheetCanvasFloatDomManagerService, _sheetsChartUIService: ISheetsChartUIService, _adapterRegistry: ChartElementFloatMenuAdapterRegistry, _commandService: ICommandService);
21
+ dispose(): void;
22
+ private _registerAdapter;
23
+ private _subscribeChartEvents;
24
+ private _openEditPanelByDoubleClick;
25
+ private _setActiveChart;
26
+ private _openFloatMenu;
27
+ private _closePopup;
28
+ private _clearSelectedTarget;
29
+ private _clearHiddenSelectedTarget;
30
+ }
@@ -1,13 +1,16 @@
1
1
  import { ChartModelService } from '@univerjs-pro/sheets-chart';
2
2
  import { Disposable, ICommandService, LocaleService } from '@univerjs/core';
3
+ import { SheetPrintInterceptorService } from '@univerjs/sheets-ui';
3
4
  import { ChartRenderService } from '../services/chart-render.service';
4
5
  export declare class ChartRenderController extends Disposable {
5
6
  private readonly _chartModelService;
6
7
  private readonly _chartRenderService;
7
8
  private readonly _localeService;
8
9
  private readonly _commandService;
10
+ private readonly _sheetPrintInterceptorService;
9
11
  private readonly _pendingMutationConfigRenders;
10
- constructor(_chartModelService: ChartModelService, _chartRenderService: ChartRenderService, _localeService: LocaleService, _commandService: ICommandService);
12
+ constructor(_chartModelService: ChartModelService, _chartRenderService: ChartRenderService, _localeService: LocaleService, _commandService: ICommandService, _sheetPrintInterceptorService: SheetPrintInterceptorService);
13
+ private _initPrinting;
11
14
  private _init;
12
15
  private _listenChartUpdateMutations;
13
16
  private _renderAfterChartUpdateMutation;
@@ -1,27 +1,40 @@
1
+ import type { IDrawingParam } from '@univerjs/core';
2
+ import type { IChartEditPanelRoute } from '../services/chart-panel-route';
1
3
  import { ChartModelService } from '@univerjs-pro/sheets-chart';
2
4
  import { Disposable, DrawingTypeEnum, ICommandService, IContextService, IUniverInstanceService } from '@univerjs/core';
3
5
  import { IDrawingManagerService } from '@univerjs/drawing';
6
+ import { IDrawingContextMenuService, SheetCanvasFloatDomManagerService, SheetDrawingHitTestService } from '@univerjs/sheets-drawing-ui';
4
7
  import { SheetCanvasPopManagerService } from '@univerjs/sheets-ui';
5
8
  import { ComponentManager, IconManager, IMenuManagerService, ISidebarService } from '@univerjs/ui';
6
- import { SheetsChartUIService } from '../services/sheets-chart-ui.service';
9
+ import { ChartRenderService } from '../services/chart-render.service';
10
+ import { ISheetsChartUIService } from '../services/sheets-chart-ui.service';
11
+ export declare function isSingleStandaloneChartSelection(params: readonly IDrawingParam[]): boolean;
7
12
  export declare class SheetsChartUIController extends Disposable {
8
13
  private _drawingManagerService;
9
14
  private readonly _univerInstanceService;
10
15
  private readonly _chartModelService;
16
+ private readonly _chartRenderService;
17
+ private readonly _sheetDrawingHitTestService;
11
18
  private _sidebarService;
12
19
  private _componentManager;
13
20
  private _iconManager;
14
21
  protected readonly _menuManagerService: IMenuManagerService;
22
+ private readonly _drawingContextMenuService;
23
+ private readonly _sheetCanvasFloatDomManagerService;
15
24
  private readonly _sheetCanvasPopManagerService;
16
25
  private readonly _commandService;
17
26
  private readonly _sheetsChartUIService;
18
27
  private readonly _contextService;
19
28
  private _sidebarDisposable;
20
- constructor(_drawingManagerService: IDrawingManagerService, _univerInstanceService: IUniverInstanceService, _chartModelService: ChartModelService, _sidebarService: ISidebarService, _componentManager: ComponentManager, _iconManager: IconManager, _menuManagerService: IMenuManagerService, _sheetCanvasPopManagerService: SheetCanvasPopManagerService, _commandService: ICommandService, _sheetsChartUIService: SheetsChartUIService, _contextService: IContextService);
29
+ constructor(_drawingManagerService: IDrawingManagerService, _univerInstanceService: IUniverInstanceService, _chartModelService: ChartModelService, _chartRenderService: ChartRenderService, _sheetDrawingHitTestService: SheetDrawingHitTestService, _sidebarService: ISidebarService, _componentManager: ComponentManager, _iconManager: IconManager, _menuManagerService: IMenuManagerService, _drawingContextMenuService: IDrawingContextMenuService, _sheetCanvasFloatDomManagerService: SheetCanvasFloatDomManagerService, _sheetCanvasPopManagerService: SheetCanvasPopManagerService, _commandService: ICommandService, _sheetsChartUIService: ISheetsChartUIService, _contextService: IContextService);
21
30
  private _openPanel;
22
31
  hidePanel(): void;
23
32
  initPanel(): void;
24
- openChartPanelById(chartId: string): void;
33
+ private _handleDrawingDoubleClick;
34
+ private _openEditPanelByDoubleClick;
35
+ openChartPanelById(chartId: string, route?: IChartEditPanelRoute): void;
36
+ private _activateEditPanelState;
37
+ private _deactivateEditPanelState;
25
38
  private _initMenus;
26
39
  getChartPopupMenus(unitId: string, subUnitId: string, drawingId: string, drawingType: DrawingTypeEnum): ({
27
40
  label: string;
@@ -1,5 +1,3 @@
1
1
  import type { ChartConfigStateKey, InferChartConfigStateValue } from './services/sheets-chart-ui.service';
2
- import { SheetsChartUIService } from './services/sheets-chart-ui.service';
3
- export declare function useSheetsChartUIService(): SheetsChartUIService;
4
- export declare function useChartConfigState<V, T extends ChartConfigStateKey = ChartConfigStateKey>(key: T, service: SheetsChartUIService, defaultValue: V): [V, (value: V) => void];
5
- export declare function useChartConfigState<T extends ChartConfigStateKey = ChartConfigStateKey, V extends InferChartConfigStateValue<T> = InferChartConfigStateValue<T>>(key: T, service: SheetsChartUIService): [V | undefined, (value: V) => void];
2
+ export declare function useChartConfigState<V, T extends ChartConfigStateKey = ChartConfigStateKey>(key: T, defaultValue: V): [V, (value: V) => void];
3
+ export declare function useChartConfigState<T extends ChartConfigStateKey = ChartConfigStateKey, V extends InferChartConfigStateValue<T> = InferChartConfigStateValue<T>>(key: T): [V | undefined, (value: V) => void];
@@ -1,5 +1,9 @@
1
1
  import './global.css';
2
+ export { SHEETS_CHART_UI_PLUGIN_CONFIG_KEY } from './config/config';
3
+ export type { IUniverSheetsChartUIConfig } from './config/config';
2
4
  export { SheetsChartUIController } from './controllers/ui.controller';
5
+ export { menuSchema as SheetsChartUIMenuSchema } from './menu/schema';
3
6
  export { UniverSheetsChartUIPlugin } from './plugin';
4
- export { SheetsChartUIService } from './services/sheets-chart-ui.service';
5
- export { registerWordCloudChart } from '@univerjs-pro/engine-chart';
7
+ export type { IChartEditPanelRoute, IChartPanelRouteState, IChartSelectedElementState } from './services/chart-panel-route';
8
+ export { resolveChartEditPanelRoute } from './services/chart-panel-route';
9
+ export { ISheetsChartUIService, SheetsChartUIService } from './services/sheets-chart-ui.service';
@@ -7,6 +7,8 @@ declare const locale: {
7
7
  editChart: string;
8
8
  openChartPanel: string;
9
9
  deleteChart: string;
10
+ exportImage: string;
11
+ copy: string;
10
12
  hideChartPanel: string;
11
13
  setupChart: string;
12
14
  customChart: string;
@@ -0,0 +1,7 @@
1
+ import type { IAccessor } from '@univerjs/core';
2
+ import type { IMenuButtonItem } from '@univerjs/ui';
3
+ export declare const SHEETS_CHART_CONTEXT_MENU_POSITION = "SHEETS_CHART_CONTEXT_MENU";
4
+ export declare function ChartEditContextMenuFactory(_accessor: IAccessor): IMenuButtonItem;
5
+ export declare function ChartCopyContextMenuFactory(_accessor: IAccessor): IMenuButtonItem;
6
+ export declare function ChartExportImageContextMenuFactory(_accessor: IAccessor): IMenuButtonItem;
7
+ export declare function ChartDeleteContextMenuFactory(_accessor: IAccessor): IMenuButtonItem;
@@ -1,14 +1,16 @@
1
- import type { IUniverSheetsChartConfig } from '@univerjs-pro/sheets-chart';
2
- import { ICommandService, Injector, Plugin, UniverInstanceType } from '@univerjs/core';
1
+ import type { IUniverSheetsChartUIConfig } from './config/config';
2
+ import { ICommandService, IConfigService, Injector, Plugin, UniverInstanceType } from '@univerjs/core';
3
3
  export declare class UniverSheetsChartUIPlugin extends Plugin {
4
4
  private readonly _config;
5
5
  protected readonly _injector: Injector;
6
+ private readonly _configService;
6
7
  private readonly _commandService;
7
8
  static type: UniverInstanceType;
8
9
  static pluginName: string;
9
10
  static packageName: string;
10
11
  static version: string;
11
- constructor(_config: IUniverSheetsChartConfig, _injector: Injector, _commandService: ICommandService);
12
+ private readonly _resolvedConfig;
13
+ constructor(_config: Partial<IUniverSheetsChartUIConfig> | undefined, _injector: Injector, _configService: IConfigService, _commandService: ICommandService);
12
14
  onStarting(): void;
13
15
  onRendered(): void;
14
16
  private _initCommands;