Hi there,
I’m trying to figure out how to change the label on my tooltip fills:
I can change the labels of the other series using the channels:
option in my plot mark, but I can’t get them to stick for the fill. For reference, I’m plotting tips following this general structure,
Plot.plot({
marks: [
Plot.barY(
x: "x",
y: "y",
fill: "fuel_type",
channels: {'Percentage Point Change':"x", Region:"y", 'Fuel Type':"fuel_type"},
tip: true
)
]
})
If anyone has advice on changing the label of the fill in the Plot call then let me know!