diff --git a/frontend/src/views/chart/view/ChartStyleBatchSet.vue b/frontend/src/views/chart/view/ChartStyleBatchSet.vue
index 3be0d4f6a2..b4209f3be6 100644
--- a/frontend/src/views/chart/view/ChartStyleBatchSet.vue
+++ b/frontend/src/views/chart/view/ChartStyleBatchSet.vue
@@ -27,6 +27,7 @@
       @onTextChange="onTextChange"
       @onLegendChange="onLegendChange"
       @onMarginChange="onMarginChange"
+      @onSuspensionChange="onSuspensionChange"
     />
     <el-row v-else>
       <div class="view-selected-message-class">
@@ -103,6 +104,9 @@ export default {
     onMarginChange(val) {
       this.batchOptChange('customStyle', 'margin', val)
     },
+    onSuspensionChange(val) {
+      this.batchOptChange('customAttr', 'suspension', val)
+    },
     batchOptChange(custom, property, value) {
       this.$store.commit('setChangeProperties', {
         'custom': custom,