@@ -104,7 +104,11 @@ const model = ref([
104104 { key: ' xyShowAxis' , def: true , type: ' checkbox' },
105105 { key: ' xyShowGrid' , def: true , type: ' checkbox' },
106106 { key: ' xyShowScale' , def: true , type: ' checkbox' },
107- { key: ' yAxisLabel' , def: ' Lorem ipsum Y axis labellum' }
107+ { key: ' yAxisLabel' , def: ' Lorem ipsum Y axis labellum' },
108+ { key: ' zoomXy' , def: true , type: ' checkbox' },
109+ { key: ' zoomColor' , def: ' #CCCCCC' , type: ' color' },
110+ { key: ' zoomFontSize' , def: 14 , type: ' number' , min: 8 , max: 48 },
111+ { key: ' zoomUseResetSlot' , def: false , type: ' checkbox' }
108112
109113])
110114
@@ -150,6 +154,9 @@ function selectDatapoint(datapoint) {
150154 <template #tooltip-after =" { seriesIndex } " >
151155 #AFTER {{ seriesIndex }}
152156 </template >
157+ <template #reset-action =" { reset } " >
158+ <button @click =" reset()" >REFRESH</button >
159+ </template >
153160 </LocalVueUiQuickChart >
154161 </template >
155162
@@ -167,6 +174,9 @@ function selectDatapoint(datapoint) {
167174 <template #tooltip-after =" { seriesIndex } " >
168175 #AFTER {{ seriesIndex }}
169176 </template >
177+ <template #reset-action =" { reset } " >
178+ <button @click =" reset()" >REFRESH</button >
179+ </template >
170180 </LocalVueDataUi >
171181 </template >
172182
@@ -184,6 +194,9 @@ function selectDatapoint(datapoint) {
184194 <template #tooltip-after =" { seriesIndex } " >
185195 #AFTER {{ seriesIndex }}
186196 </template >
197+ <template #reset-action =" { reset } " >
198+ <button @click =" reset()" >REFRESH</button >
199+ </template >
187200 </VueUiQuickChart >
188201 </template >
189202
@@ -201,6 +214,9 @@ function selectDatapoint(datapoint) {
201214 <template #tooltip-after =" { seriesIndex } " >
202215 #AFTER {{ seriesIndex }}
203216 </template >
217+ <template #reset-action =" { reset } " >
218+ <button @click =" reset()" >REFRESH</button >
219+ </template >
204220 </VueDataUi >
205221 </template >
206222
0 commit comments