fix: remove invalid stack property from secondary position channels#237
Merged
thomasp85 merged 1 commit intoposit-dev:mainfrom Mar 18, 2026
Merged
Conversation
`build_layer_encoding` was emitting `"stack": null` on both primary (y/radius) and secondary (y2/radius2) position channels. The Vega-Lite v6 schema does not allow `stack` on secondary channels, causing Altair to reject the spec with "Only chart objects can be used in LayerChart" (validate=False) or a schema validation error (validate=True). Only primary position channels need `stack: null` to disable Vega-Lite's automatic stacking — secondary channels inherit from the primary. Also strengthens `test_secondary_channels_have_no_disallowed_properties` to assert `stack` is absent and to run full Vega-Lite schema validation. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
build_layer_encodingemits"stack": nullon both primary (y/radius) and secondary (y2/radius2) position channels to disable Vega-Lite's automatic stacking. However, the Vega-Lite v6 schema does not allowstackon secondary channels — only primary position channels support it.This causes errors when consuming the JSON output with Altair (Python):
validate=False:TypeError: Only chart objects can be used in LayerChart.validate=True:ValidationError: Additional properties are not allowed ('stack' was unexpected)Any spec that produces a
y2encoding (bars, areas, segments, ribbons, error bars, etc.) is affected.Fix
Remove the
stack: nullinsertion ony2/radius2channels. Only primary position channels (y/radius) need this property — secondary channels don't support independent stacking and inherit behavior from their primary channel.Test changes
Strengthened
test_secondary_channels_have_no_disallowed_propertiesto:stackis absent fromx2/y2encodings (was not previously checked)assert_valid_vegalite()for full Vega-Lite schema validation (was not previously called)