@@ -92,6 +92,10 @@ const model = ref([
9292 { key: ' table.th.outline' , def: ' none' , type: ' text' },
9393 { key: ' table.td.roundingValue' , def: 2 , type: ' number' , min: 0 , max: 12 },
9494 { key: ' table.td.roundingPercentage' , def: 2 , type: ' number' , min: 0 , max: 12 },
95+ { key: ' style.chart.zoom.show' , def: true , type: ' checkbox' },
96+ { key: ' style.chart.zoom.fontSize' , def: 14 , type: ' number' , min: 8 , max: 48 },
97+ { key: ' style.chart.zoom.color' , def: ' #CCCCCC' , type: ' color' },
98+ { key: ' style.chart.zoom.useResetSlot' , def: false , type: ' checkbox' }
9599]);
96100
97101const config = computed (() => {
@@ -156,6 +160,9 @@ const step = ref(0)
156160 {{ legend }}
157161 </div >
158162 </template >
163+ <template #reset-action =" { reset } " >
164+ <button @click =" reset()" >REFRESH</button >
165+ </template >
159166 </LocalVueUiDonutEvolution >
160167 </template >
161168
@@ -171,6 +178,9 @@ const step = ref(0)
171178 {{ legend }}
172179 </div >
173180 </template >
181+ <template #reset-action =" { reset } " >
182+ <button @click =" reset()" >REFRESH</button >
183+ </template >
174184 </LocalVueDataUi >
175185 </template >
176186
@@ -186,6 +196,9 @@ const step = ref(0)
186196 {{ legend }}
187197 </div >
188198 </template >
199+ <template #reset-action =" { reset } " >
200+ <button @click =" reset()" >REFRESH</button >
201+ </template >
189202 </VueUiDonutEvolution >
190203 </template >
191204
@@ -201,6 +214,9 @@ const step = ref(0)
201214 {{ legend }}
202215 </div >
203216 </template >
217+ <template #reset-action =" { reset } " >
218+ <button @click =" reset()" >REFRESH</button >
219+ </template >
204220 </VueDataUi >
205221 </template >
206222
0 commit comments