Circle
The circle shape function takes the elements within the container and lays them out in a circle with a given radius.
import { ref } from 'vue';
const config = ref({
shape: 'circle',
shapeParameters: {
radius: "40%",
center: {
x: "50%",
y: "50%"
}
}
});