Charts for Visualization
Chart nodes are json files specifying a vega-lite chart. To configure a chart node in your graph, add the node to your graph and set the chart_input
variable in the node Config tab to point to the desired input Table
.
chart.json
{
"width": 600,
"height": 600,
"mark": "point",
"encoding": {
"x": {
"field": "created_at",
"type": "temporal"
},
"y": {
"field": "id",
"type": "quantitative"
},
"color": {
"field": "type",
"type": "nominal"
},
"shape": {
"field": "type",
"type": "nominal"
}
}
}
Dashboards​
Navigate to your dashboard tab, create a new dashboard, and add tables, charts, and markdown nodes to create a presentation friendly view of your App.