diff --git a/core/core-frontend/src/components/visualization/OuterParamsSet.vue b/core/core-frontend/src/components/visualization/OuterParamsSet.vue
index 1fe28cc8f4..a1ec610da8 100644
--- a/core/core-frontend/src/components/visualization/OuterParamsSet.vue
+++ b/core/core-frontend/src/components/visualization/OuterParamsSet.vue
@@ -166,7 +166,9 @@
- {{ baseDatasetInfo.name }}
+ {{
+ baseDatasetInfo.name
+ }}
- {{ viewInfo.chartName }}
+
+ {{ viewInfo.chartName }}
@@ -1128,4 +1136,11 @@ defineExpose({
color: #646a73;
margin: 3px 0 0 4px;
}
+
+.ellipsis {
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ width: 220px;
+}
diff --git a/core/core-frontend/src/views/chart/components/views/index.vue b/core/core-frontend/src/views/chart/components/views/index.vue
index f38276041f..436e767634 100644
--- a/core/core-frontend/src/views/chart/components/views/index.vue
+++ b/core/core-frontend/src/views/chart/components/views/index.vue
@@ -1087,7 +1087,7 @@ const clearG2Tooltip = () => {
:style="{ 'justify-content': titleAlign, 'margin-bottom': marginBottom }"
>
-
+
{{ view.title }}
@@ -1329,4 +1329,11 @@ const clearG2Tooltip = () => {
.fade-leave-to {
opacity: 0;
}
+
+.ellipsis {
+ white-space: nowrap !important;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ width: 100%;
+}