We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When creating an image scatterplot with vega-lite Images were positioned incorrectly. See this layered chart where the points don't match the position of the images
After some exploration, the only way I could get the images to position correctly was by adding the height attribute to the mark
Minimal example to reproduce the bug
{ "$schema": "https://vega.github.io/schema/vega-lite/v5.json", "layer": [ { "mark": {"type": "image" }, "encoding": { "x": {"field": "title", "type": "nominal"}, "url": {"field": "img", "type": "nominal"}, "y": {"field": "score", "type": "quantitative"}, "tooltip": {"field": "title"} } }, { "mark": {"type": "point"}, "encoding": { "x": {"field": "title", "type": "nominal"}, "y": {"field": "score", "type": "quantitative"}, "tooltip": {"field": "title"} } } ], "data": { "values": [ { "title": "Minecraft", "score": 4.5664163, "img": "https://play-lh.googleusercontent.com/yAtZnNL-9Eb5VYSsCaOC7KAsOVIJcY8mpKa0MoF-0HCL6b0OrFcBizURHywpuip-D6Y=w832-h470" } ] }, "width": 200 }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
When creating an image scatterplot with vega-lite Images were positioned incorrectly. See this layered chart where the points don't match the position of the images
After some exploration, the only way I could get the images to position correctly was by adding the height attribute to the mark
Minimal example to reproduce the bug
The text was updated successfully, but these errors were encountered: