{
return G2.render({
type: "view",
height: 320,
data: [
{ type: "分类一", value: 27 },
{ type: "分类二", value: 25 },
{ type: "分类三", value: 18 },
{ type: "分类四", value: 15 },
{ type: "分类五", value: 10 },
{ type: "其他", value: 5 }
],
interactions: [{ type: "legendFilter" }],
coordinates: [{ type: "theta", innerRadius: 0.56 }],
children: [
{
type: G2PlotPie,
encode: { y: "value", color: "type" },
labels: [{ text: "value" }]
},
{
type: "text",
transform: [{ type: "groupColor", text: "sum" }],
encode: { text: "value", color: "type" },
style: {
x: "50%",
y: "50%",
textAlign: "center",
textBaseline: "middle",
fontSize: 24,
fontWeight: 600
}
}
]
});
}