Created
October 27, 2025 18:44
-
-
Save cbaragao/751cd22dfe715a49d6ff757bd3d3fa0c to your computer and use it in GitHub Desktop.
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
| { | |
| "data": { | |
| "name": "dataset" | |
| }, | |
| "title":"Total Sales by Segment - Vertical Bar Chart", | |
| "encoding": { | |
| "x": { | |
| "field": "Segment", | |
| "type": "nominal", | |
| "sort":"-y", | |
| "axis":{ | |
| "labelAngle":360, | |
| "title":null, | |
| "domain": false, | |
| "ticks": false | |
| } | |
| }, | |
| "y": { | |
| "field": "Total Sales", | |
| "type": "quantitative", | |
| "axis":{ | |
| "grid": false, | |
| "title":null, | |
| "domain": false, | |
| "ticks": false, | |
| "labels": false | |
| } | |
| } | |
| }, | |
| "layer":[{ | |
| "mark": "bar" | |
| },{ | |
| "mark":{ | |
| "type":"text", | |
| "align":"left", | |
| "baseline":"middle", | |
| "dy":-5, | |
| "dx": -10 | |
| }, | |
| "encoding":{ | |
| "text": {"field": "Total Sales", "type":"quantitative","format":".2s"} | |
| }} | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment