We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcb6af4 commit fb0c0e1Copy full SHA for fb0c0e1
mplaltair/parse_chart.py
@@ -114,6 +114,13 @@ def __init__(self, alt_chart):
114
self.data = alt_chart.data
115
self.mark = alt_chart.mark
116
117
+ if alt_chart.to_dict().get('config').get('axis'):
118
+ raise NotImplementedError
119
+
120
+ if alt_chart.to_dict().get('config').get('scale'):
121
122
123
124
self.encoding = {}
125
for k, v in alt_chart.to_dict()['encoding'].items():
126
self.encoding[k] = ChannelMetadata(k, alt_chart)
0 commit comments