diff --git a/core/core-frontend/src/locales/en.ts b/core/core-frontend/src/locales/en.ts index 0d271b2e09..df785d9e8f 100644 --- a/core/core-frontend/src/locales/en.ts +++ b/core/core-frontend/src/locales/en.ts @@ -1908,7 +1908,9 @@ Scatter chart (bubble) chart: {a} (series name), {b} (data name), {c} (value arr symbolic_map_symbol_shape: 'Symbol Shape', symbolic_map_symbol_shape_tip: 'When Customizing, Supports SVG, JPG, JPEG, and PNG files up to 1MB', - size_range: 'Size Range' + size_range: 'Size Range', + x_axis_constant_line: 'X-axis Constant Line', + y_axis_constant_line: 'Y-axis Constant Line' }, dataset: { scope_edit: 'only effective when editing', diff --git a/core/core-frontend/src/locales/tw.ts b/core/core-frontend/src/locales/tw.ts index 791cabd400..5fd7015fd5 100644 --- a/core/core-frontend/src/locales/tw.ts +++ b/core/core-frontend/src/locales/tw.ts @@ -1864,7 +1864,9 @@ export default { wave_rings: '水波環數', symbolic_map_symbol_shape: '符號形狀', symbolic_map_symbol_shape_tip: '自訂時, 支援 1MB 以內的 SVG, JPG, JPEG, PNG 檔案', - size_range: '大小區間' + size_range: '大小區間', + x_axis_constant_line: 'X 軸恆線', + y_axis_constant_line: 'Y 軸恆線' }, dataset: { scope_edit: '僅編輯時生效', diff --git a/core/core-frontend/src/locales/zh-CN.ts b/core/core-frontend/src/locales/zh-CN.ts index 699618c751..04de08e4dd 100644 --- a/core/core-frontend/src/locales/zh-CN.ts +++ b/core/core-frontend/src/locales/zh-CN.ts @@ -1866,7 +1866,9 @@ export default { wave_rings: '水波环数', symbolic_map_symbol_shape: '符号形状', symbolic_map_symbol_shape_tip: '自定义时, 支持 1MB 以内的 SVG, JPG, JPEG, PNG 文件', - size_range: '大小区间' + size_range: '大小区间', + x_axis_constant_line: 'X 轴恒线', + y_axis_constant_line: 'Y 轴恒线' }, dataset: { scope_edit: '仅编辑时生效', diff --git a/core/core-frontend/src/views/chart/components/editor/editor-style/components/QuadrantSelector.vue b/core/core-frontend/src/views/chart/components/editor/editor-style/components/QuadrantSelector.vue index 26206b54cd..723fb30e68 100644 --- a/core/core-frontend/src/views/chart/components/editor/editor-style/components/QuadrantSelector.vue +++ b/core/core-frontend/src/views/chart/components/editor/editor-style/components/QuadrantSelector.vue @@ -1,16 +1,13 @@