Module

x/vega_lite/examples/specs/bar_month_temporal_initial.vl.json

A concise grammar of interactive graphics, built on Vega.
Latest
File
{ "$schema": "https://vega.github.io/schema/vega-lite/v4.json", "description": "Using `labelExpr` to show only initial letters of month names.", "data": {"url": "data/seattle-weather.csv"}, "mark": "bar", "encoding": { "x": { "timeUnit": "month", "field": "date", "axis": { "labelAlign": "left", "labelExpr": "datum.label[0]" } }, "y": {"aggregate": "mean", "field": "precipitation"} }}