Skip to content
New issue

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

Can't get expressions to work with cljsjs/vega-lite #2167

Open
punit-naik opened this issue Mar 12, 2021 · 0 comments
Open

Can't get expressions to work with cljsjs/vega-lite #2167

punit-naik opened this issue Mar 12, 2021 · 0 comments

Comments

@punit-naik
Copy link

punit-naik commented Mar 12, 2021

I am using [cljsjs/vega-lite "4.17.0-0"] and [cljsjs/vega "3.3.1-0"] in my project. I have the spec below:
{ "encoding":{ "x":{ "field":"x", "type":"ordinal", "title":"Score", "axis":{ "labelAngle":0, "labelOverlap":false, "grid":false, "titleFontSize":14, "labelFontSize":12, "tickCount":7, "tickOffset":{ "expr":"width/-14" } } }, "y":{ "field":"y", "type":"quantitative", "title":"No. of Companies", "axis":{ "labelAngle":0, "labelOverlap":false, "grid":false, "titleFontSize":14, "labelFontSize":12, "tickCount":7 } }, "color":{ "field":"label", "type":"nominal", "title":"Score belonging to", "legend":{ "orient":"top" }, "scale":{ "domain":[ "Rest of the companies", "Tesla Inc" ], "range":[ "#4c78a8", "#ff6501" ] } }, "opacity":{ "condition":{ "selection":"company", "value":1 }, "value":0.05 }, "tooltip":[ { "field":"x", "title":"Score", "type":"ordinal" }, { "field":"y", "title":"No. of Companies", "type":"quantitative" }, { "field":"label", "title":"Score belonging to", "type":"nominal" } ] }, "transform":[ { "filter":{ "field":"x", "valid":true } }, { "filter":{ "field":"y", "valid":true } } ], "config":{ "view":{ "stroke":"transparent" }, "mark":{ "cursor":"pointer" }, "axis":{ "gridColor":"white", "labelColor":"white", "tickColor":"white", "titleColor":"white" }, "legend":{ "labelColor":"white", "titleColor":"white" } }, "mark":{ "type":"bar", "invalid":"filter" }, "width":"container", "background":"transparent", "id":"573da040-5f77-4ea5-a2c9-24cff7a2eb76", "selection":{ "company":{ "type":"multi", "fields":[ "label" ], "bind":"legend" } }, "height":"container", "data":{ "values":[ { "x":0, "y":38, "label":"Rest of the companies" }, { "x":1, "y":22, "label":"Rest of the companies" }, { "x":2, "y":11, "label":"Rest of the companies" }, { "x":3, "y":6, "label":"Rest of the companies" }, { "x":4, "y":9, "label":"Rest of the companies" }, { "x":5, "y":14, "label":"Tesla Inc" }, { "x":6, "y":30, "label":"Rest of the companies" } ] } }

Although this works perfectly fine inside vega editor (https://vega.github.io/editor/#/url/vega-lite/N4Igpgdgxg9gJgSwgcxALlAD3aAZgsAGznRGwBoQAXATwAcxSYAnRCAQ0JEqoSsMZoQAZVjNGldpgQBnHCELsARkQCCKAegAMlRSsIB5AG5hmiuulycZYSsmYISaK4Rs8+AgGIwIVYQgAvQQBGABZdZSJvX38g9GCAJncoAGsAYRgAV190AHZklINcXBsqeTBMOmZSAHdHKgALAHoAWjCQAF8uyhp5fCInEF6eekEQAEdM9l8+dl4TbmoPMYA5GAA6AAIYXE2MgFs6aYI5SWk5DAVIwnVkTTQdK-1jU3NLa1sQe0d310-efhgaJ+QIhcJPKI+EFxNCJAoZbJlNC5bogWCEFh9AjEUh6IiLWgMUgQGD7JCcAnLUiiFhgTb6HzIJDITZUGCLATISBOUAsAg5IRsiwdSgyKCcQSgOCk9hIdAAbRAACUwDIqNtdo06bBDsdVYsACqqxSbACS0BAAF1KMxplyFSAAMShKC5AAc7Ddi0dxQAbABWLTBK2omBHKB8XqXWAQRC8HzyGwCKDxiCkHVHCDDEBGTiZEIinN5wRadZaf2FtkwQi8CxoeV4bGDChLQHUsQSaijJisclcEWNgakbMA+4gNZbHZ7UmZk4E7tCSbTAFzBALAcgfo4oR4rjuNtCGnielERnM1nskZEoQkskcfuWyu2iAyXAsfYKxs10xYodCFu5oQPxoFQzD5t0X5UD+lxboM2aAcBoHgR01poj4+CoJcRgEDUiagTAKRjKB0wyEc4g5IW+zsMwKTyFAmTMDImJCHQMBIFB1SFlIsjyN8cAZBi1RCEoiipBy1wCcxIAiewYnwtWUkyXJrYCJJQnSaJtGFpy3LyLuamkEptH7qpCnqUZnSUdRtGXISYxKNRixIAhgz4N+nGUHUcCNOmUKyhAP6UA5qT2FksakMRL5kZAZSUMBID+rkADMcDsFooRaC0-q4LkuQtKEYDsP6LTsAkUAAJwtAkLrFLkpVgEouS+osSZgCmCAJtGM7TFGoB2aQ+yZDWCCLLBFyKruVpBUggw6eFqINGACDIA0SJob4-mBSAqVUOw8iAfm41YNoPToElboRPopAqmqGqsotmwZnqcgbtgsKnWgCRJBCXBCDd6pTlqj3dRAc6veg31RsEwSXfif2qgDmoPU9oP6uDaBJR9vqw79yoI3dQMo2D5DHWg4JRuVOPXfjgPIyDxOk-6H1hFTQhGjIJrmlAnQk2Q6DY0MZ2PJN8O3bT2r02jj4dEAA), but the tickOfset expr is not working via the library.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant