# Multiple Circle
You can show multiple circle in a single progress. Note that `circle-gap` and `stroke-width` is relative to `view-box-width`.
```html
CPU
Allocation
cores
Minus 10%
Add 10%
```
```js
export default {
data () {
return {
percentage: 0
}
},
methods: {
add () {
this.percentage += 10
if (this.percentage > 100) this.percentage = 0
},
minus () {
this.percentage -= 10
if (this.percentage < 0) this.percentage = 100
}
}
}
```