We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
{ "$schema": "https://vega.github.io/schema/vega-lite/v4.json", "data": { "values": [ {"Value": 27, "seriesName": "Server A", "Time": "2010"}, {"Value": 48, "seriesName": "Server B", "Time": "2010"}, {"Value": 27, "seriesName": "Server C", "Time": "2010"}, {"Value": 39, "seriesName": "Server D", "Time": "2010"}, {"Value": 32, "seriesName": "Server E", "Time": "2010"}, {"Value": 23, "seriesName": "Server A", "Time": "2015"}, {"Value": 38, "seriesName": "Server B", "Time": "2015"}, {"Value": 11, "seriesName": "Server C", "Time": "2015"}, {"Value": 39, "seriesName": "Server D", "Time": "2015"}, {"Value": 12, "seriesName": "Server E", "Time": "2015"}, {"Value": 37, "seriesName": "Server A", "Time": "2020"}, {"Value": 28, "seriesName": "Server B", "Time": "2020"}, {"Value": 17, "seriesName": "Server C", "Time": "2020"}, {"Value": 19, "seriesName": "Server D", "Time": "2020"}, {"Value": 52, "seriesName": "Server E", "Time": "2020"} ] }, }
{ "mark": "line", "encoding": { "y": { "field": "Value", "type":"quantitative" }, "x":{ "field":"Time", "type":"temporal" }, "color":{ "field":"seriesName", "type":"nominal" } } }
"mark": "point", "encoding": { "y": { "field": "Value", "type":"quantitative" }, "x":{ "field":"Time", "type":"temporal" }, "color":{ "field":"seriesName", "type":"nominal" } }
{ "layer":[ { "mark":"line" }, { "mark":"point" } ], "encoding": { "y": { "field": "Value", "type":"quantitative" }, "x":{ "field":"Time", "type":"temporal" }, "color":{ "field":"seriesName", "type":"nominal" } } }
{ "layer":[ { "mark":"bar" } ], "encoding": { "y": { "field": "Value", "type":"quantitative" }, "x":{ "field":"Time", "type":"temporal" }, "color":{ "field":"seriesName", "type":"nominal" } }
{ "layer":[ { "mark":"bar" } ], "encoding": { "x": { "field": "Value", "type":"quantitative" }, "y":{ "field":"Time", "type":"temporal" }, "color":{ "field":"seriesName", "type":"nominal" } } }
{ "mark": "bar", "encoding": { "y": { "field": "seriesName", "type": "nominal" }, "x":{ "field":"Value", "type":"quantitative" }, "color":{ "field":"Time", "type":"nominal" } }
{ "mark": "area", "encoding": { "x": { "field": "seriesName", "type": "nominal" }, "y":{ "field":"Value", "type":"quantitative" }, "color":{ "field":"Time", "type":"nominal" } } }
{ "mark": "bar", "encoding": { "y": { "field":"Time", "type":"nominal" }, "x":{ "field":"Value", "type":"quantitative" }, "color":{ "field": "seriesName", "type": "nominal" } } }
{ "mark": "bar", "encoding": { "y": { "field":"seriesName", "type":"nominal" }, "x":{ "field":"Value", "type":"quantitative", "aggregate":"max" } }
{ "mark": "bar", "encoding": { "y": { "field":"Time", "type":"nominal" }, "x":{ "field":"Value", "type":"quantitative", "aggregate":"max" } } }
{ "layer":[ { "mark":"circle" } ], "encoding": { "x": { "field": "Value", "type":"quantitative" }, "color":{ "field":"seriesName", "type":"nominal" } } }
"mark": "bar", "encoding": { "x": { "field":"Time", "type":"nominal" }, "y":{ "field":"seriesName", "type":"nominal" }, "color":{ "field":"Value", "type":"quantitative" } } }
{ "mark": "bar", "encoding": { "x": { "field":"Time", "type":"nominal" }, "y":{ "field":"seriesName", "type":"nominal" }, "color":{ "field":"Value", "type":"quantitative", "scale": {"range": ["lightgreen", "red"]} } } }
{ "mark": "circle", "encoding": { "x": { "field":"Time", "type":"nominal" }, "y":{ "field":"seriesName", "type":"nominal" }, "size":{ "value": 120 }, "color":{ "legend":null, "field":"Value", "type":"quantitative", "scale": {"range": ["lightgreen", "red"]} } } }
{ "mark": "arc", "encoding": { "theta": {"field": "Value", "type": "quantitative", "aggregate":"mean"}, "color": {"field": "seriesName", "type": "nominal"} } }
{ "mark": "arc", "encoding": { "radius": {"field": "Value", "type": "quantitative", "aggregate":"mean"}, "color": {"field": "seriesName", "type": "nominal"} } }
{ "mark": {"type": "boxplot", "extent": "min-max"}, "encoding": { "y": {"field": "seriesName", "type": "nominal"}, "color":{ "field":"seriesName" }, "x": { "field": "Value", "type": "quantitative", "scale": {"zero": false, "domainMin": 0} } } }
{ "layer":[ { "mark":"line", "encoding":{ "x":{ "field":"Time", "type":"temporal" }, "y":{ "field":"Value", "type":"quantitative", "aggregate":"average" }, "color":{ "value":"green" } } }, { "mark":"line", "encoding":{ "x":{ "field":"Time", "type":"temporal" }, "y":{ "field":"Value", "type":"quantitative", "aggregate":"min" }, "color":{ "value":"lightgreen" } } }, { "mark":"line", "encoding":{ "x":{ "field":"Time", "type":"temporal" }, "y":{ "field":"Value", "type":"quantitative", "aggregate":"max" }, "color":{ "value":"darkgreen" } } }, { "mark": { "type":"point", "opacity":0.5 }, "encoding":{ "x":{ "field":"Time", "type":"temporal" }, "y":{ "field":"Value", "type":"quantitative" }, "color":{ "field":"seriesName", "type": "nominal" } } } ] }
{ "mark": "bar", "encoding": { "x": { "field":"seriesName", "type":"nominal", "title":null }, "column": { "field": "Time", "type": "ordinal" }, "y":{ "field":"Value", "type":"quantitative", "title":"Value" }, "color":{ "field": "seriesName" } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Sample Data
Line chart 1
point chart
Point and line
Bar chart
Horizontal bar chart
Horizontal bar chart with year as column
Stacked area chart
Horizontal bar chart with year as y axis
Max of each server
Max of each year
Bucketing
Heat map
Heatmap 2
Heatmap 3
Simple pie chart with mean of each server
Box Plot
Average and individual metrics
Horizontal stacked bar chart
The text was updated successfully, but these errors were encountered: