render({
type: "view",
width,
height: concerts.length * 13,
children: [
{
type: "text",
style: {
text: "2024音乐节",
x: "100%",
y: "100%",
textAlign: "end",
textBaseline: "bottom",
fontSize: 80,
fontWeight: "bold",
dy: -30,
fill: "#DDDDDD"
}
},
{
type: "interval",
data: d3
.sort(
concerts.filter(
(d) =>
d.actors.length &&
d.price &&
d.price_str &&
d.price_str.split("-").length > 1
),
(d) => d.price_str.split("-").map((d) => +d)[1]
)
.reverse()
.map((d) => ({ ...d, actors: d.actors.length })),
coordinate: { transform: [{ type: "transpose" }] },
encode: {
x: "nameNoHtml",
y: (d) => d.price_str.split("-").map((d) => +d),
color: "actors"
},
scale: { color: { palette: "viridis" } },
labels: [
{
text: "nameNoHtml",
fill: "#fff",
fontWeight: "bold",
position: "left",
dx: 5,
transform: [
{
type: "contrastReverse"
}
]
}
],
tooltip: { items: [{ field: "actors", name: "参演人数" }] },
axis: {
x: false,
y: {
title: "票价区间"
}
},
legend: false
}
]
})