For all charts, examples are either directly linked below, or can be found by browising the example app endpoints and configs.
Sharing data on a single endpoint
It is also possible to share data on a single endpoint, by effectively "namespacing" each chart. See example shared data configuration and the core config schema under modules:key
.
Vega-Lite is a high-level grammar for interactive graphics. It provides a concise JSON syntax for supporting rapid generation of interactive multi-view visualizations. Visit vegalite for more.
Supported.
Vega-lite is very robust and thus has it's own specification language. You can view it here.
C3js is a wrapper around D3js, that provides simple, out-of-the-box charts. Visit c3js.org for more.
Supported.
An object with each key corresponding to the line label, and a list of integer values.
{
"line1": [1, 2, 10, 15],
"line2": [2, 30, 40, 55]
}
An object with each key corresponding to the line label, and a list of its values.
{
"bar1": [1, 2, 30, 12, 100],
"bar2": [2, 4, 12, 50, 80],
}
An object with each key corresponding to the line label, and a list of its values. A dates
key must be specified, with a list of dates.
{
"dates": ["2016-08-22", "2016-09-01", "2016-09-11", "2016-09-21"],
"line1": [1, 2, 3, 4],
"line2": [2, 10, 3, 10],
"line3": [2, 10, 20, 40]
}
An object with each key corresponding to the line label, and a list of integer values.
{
"bar1": [1, 2, 30, 12, 100],
"bar2": [2, 4, 12, 50, 80],
}
An object with each key corresponding to the line label, and an an integer value.
{
"data d": 16,
"data e": 77,
"data b": 87,
"data c": 41,
"data a": 15
}
An object with each key corresponding to the line label, and a list of integer values.
{
"bar1": [1, 2, 30, 12, 100],
"bar2": [2, 4, 12, 50, 80],
}
An object with each key corresponding to the line label, and an an integer value.
{
"data d": 16,
"data e": 77,
"data b": 87,
"data c": 41,
"data a": 15
}
An object with each key corresponding to the line label, and a list of its values.
{
"bar1": [1, 2, 30, 12, 100],
"bar2": [2, 4, 12, 50, 80],
}
An object with each a single key called data
and an integer value corresponding to the current gauge value.
{
"data": 40
}
An object with each key corresponding to the line label, and a list of integer values.
{
"bar1": [1, 2, 30, 12, 100],
"bar2": [2, 4, 12, 50, 80],
}
An object with each key corresponding to the line label, and a list of integer values.
{
"bar1": [1, 2, 30, 12, 100],
"bar2": [2, 4, 12, 50, 80],
}
D3-cloud is a 3rd-party module that leverages d3 to create word clouds. Visit https://github.com/jasondavies/d3-cloud for more.
Not Supported.
A list of objects with text
and size
keys denoting the word and relative size, respectively.
{
"text": "foo", "size": 10,
"text": "bar", "size": 20,
"text": "baz", "size": 100,
}
Plotly is an extremely diverse, powerful and now open source charting library that supports a wide range of formats, including webGL and 3d charting/visualization. See https://plot.ly/ for more.
Supported.
All values are specified using JSON configuration specified by the API. See https://plot.ly/javascript/ for more.
Usually, the format is at the very least, something like the below json. You can also see more examples that have been tested with jsondash in the plotly json configs directory. Typically, you can format it exactly as recommended by Plotly API, except converted to JSON format (most javascript can be converted 1:1 using JSON.stringify
for example).
This means configuration that uses javascript functions are not accepted; these would need to be pre-computed on the server side instead, and then the results dumped to JSON.
{
"data": [],
"layout": {}
}
D3js is a powerful SVG based "dynamic document" drawing library that can create just about any imaginable visualization. As such, only a subset of commonly used types are represented here, with specific schema requirements to fulfill each chart type.
If you are familiar with d3 and want more customization, you'll need to use the basic -> iframe or basic -> embed option instead in order to write your own javascript.
Visit d3js.org for more.
A recursive json config that uses name
, size
, and children
as its main keys of arbitrary depth. Additional keys can be added as needed. The size
key is required to determine sizing of each element (relative to the set, not pixel values).
{
"name": "chartname",
"children": [
{
"name": "childelements",
"size": 10,
"children": []
}
]
}
A recursive json config that uses name
, size
, and children
as its main keys of arbitrary depth. Additional keys can be added as needed. The size
key is required to determine sizing of each element (relative to the set, not pixel values).
{
"name": "chartname",
"children": [
{
"name": "childelements",
"size": 10,
"children": []
}
]
}
A recursive json config that uses name
, size
, and children
as its main keys of arbitrary depth. Additional keys can be added as needed. The size
key is required to determine sizing of each element (relative to the set, not pixel values).
{
"name": "chartname",
"children": [
{
"name": "childelements",
"size": 10,
"children": []
}
]
}
An array of arrays, where each array element contains 2 items: the x, y coordinates for a given point.
[
[2, 10], [100, 30], [300, 10], [320, 101]
]
A recursive json config that uses name
, size
, and children
as its main keys of arbitrary depth. Additional keys can be added as needed. The size
key is required to determine sizing of each element (relative to the set, not pixel values).
{
"name": "chartname",
"children": [
{
"name": "childelements",
"size": 10,
"children": []
}
]
}
One-off, simple, ad-hoc displays.
Not supported (not relevant).
No schema; you can serve whatever kind of page you want. Similar to an iframe, except this will load the source directly into the page. Note: some unintended side effects of your dashboard may occur (such as css style overrides), so YMMV. Alternatively, you can use the iframe option.
No schema; you can load whatever page you want. This will not affect the dashboard, unlike the custom option, but you will have limited access to the contents of the iframe (typically not a concern.)
No schema; Just drop in an image url.
Any number, positive or negative. Prefixes, such as currencies, are also allowed (there is no real limit to the string, but it is typically shown as a number, and styled accordingly).
{"data": "$12,300"}
{"data": "-12,300"}
{"data": 2302}
You can also override the color and/or disable negative/positive formatting like so:
{"data": 12, "color": "purple", "noformat": "true"}
Disabling noformat
is important if you are not using a numerical value, as it might incorrectly guess color and/or formatting when it doesn't make sense.
Just like the single number option above, a number group has the same options (color
and noformat
), and general format, but supports multiple columns for each number (so you can build multiple big display of aggregate values in a single chart):
[
{
"title": "Number of widgets sold in last day",
"description": "This is a good sign",
"data": 32515.0,
"color": "green",
},
{
"title": "New customers signed up this week",
"description": "New user accounts created",
"data": 740,
},
{
"title": "Average Daily Users",
"description": "(aka DAU)",
"data": 541200,
},
{
"title": "Max concurrent users this week",
"description": "Server load peak",
"data": 123401,
"color": "orange",
"noformat": true,
},
]
You can also override the column width for each item, via "width": "30%"
.
units
While you can just add optional units within the data
field value, If you want to specify units separately for nicer styling, you can use the "units": "..."
field and it will be styled nicely for you (see below).
Takes the html embed code from youtube. For example:
<iframe width="650" height="366" src="https://www.youtube.com/embed/_hI0qMtdfng?list=RD_hI0qMtdfng&controls=0&showinfo=0" frameborder="0" allowfullscreen></iframe>
This will be serialized for JSON and deserialized when rendering.
A graph is an abstract structure that uses nodes and edges to represent relationships. The actual implementation here utilizes the graphviz digraph (directed graph) DOT specification.
The graph/digraph format is like the following simple example:
digraph {
a -> b;
b -> a;
a -> c;
b -> c;
c -> c;
}
Which must be encoded as json like so:
{
"graph": "..."
}
Where ...
is the digraph string. You can find the dot specificiation here and the actual javascript implementation here.
Not supported/relevant.
Cytoscape is a graph theory / network library for analysis and visualisation. Visit cytoscape website for more.
Supported.
Cytoscape supports third-party layout extensions to the core library, but only the core layouts are available in jsondash. See some examples in the example configurations directory.
other notes
In all configurations, there is no need to specify a DOM selector, since this will be populated during initialization. Also, this does not serialize, so it would never be included in the payload anyway.
Sigma is a JavaScript library dedicated to graph drawing. It makes easy to publish networks on Web pages, and allows developers to integrate network exploration in rich Web applications. Visit sigmajs website for more.
Supported.
Supports all sigma graphs that are renderable via json, and do not need custom javascript to add nodes, interactivity or styles. This means you must pass in your json data to the endpoints' dataSource
field. SigmaJS supports Gephi format via a separate extension, but you will need to convert this to json before returning it to your endpoint, as the Gephi plugin is not integrated here.
other notes
In all configurations, there is no need to specify a DOM selector, since this will be populated during initialization. Also, this does not serialize, so it would never be included in the payload anyway.
Supported.
A table with automatic styling, sorting, filtering and pagination. Format is a list of objects, where values can be any key and value, but all elements in the list must have matching key names. Also take note of the outside brackets. All objects must be wrapped in []
.
[
{
"name": "foo",
"age": 30
},
{
"name": "bar",
"age": 20
}
]
An interactive timeline creator.
Not supported.
A timeline using timeline.js. Format requirements are available here.
VennJS is a wrapper for d3js that provides an easy to use api for Venn and Euler diagrams. Visit https://github.com/benfred/venn.js for more.
Not supported.
A list of objects with keys sets
, and size
, where set
is a list of set names, and size
is relative size of the circle.
[
{"sets": ["A"], "size": 12},
{"sets": ["B"], "size": 12},
{"sets": ["A", "B"], "size": 2},
]
From Brendan Gregg, originator of flame graph software: "Flame graphs are a visualization of profiled software, allowing the most frequent code-paths to be identified quickly and accurately."
Supported.
Format should be similar to d3 hierarchical layouts, like:
{
"children": [
{
"name": "...",
"value": 10
},
{
"name": "...",
"value": 30,
"children": [...]
}
]
}
Sparklines are "mini" charts that can be used inline. They most often make sense as complementing a larger context, for example, a paragraph of text. See http://omnipotent.net/jquery.sparkline/ for more.
Not supported.
An array of arrays, where each element contains two integers, representing x/y positions.
[
[1, 2], [2, 10], [10, 30]
]
An array of arrays, where each element contains two integers, representing x/y positions.
[
[1, 2], [2, 10], [10, 30]
]
...
An array of integers representing up and down positions.
[
[20, 40, 30, 10]
]
...
An array of integers, representing percentages.
[
[20, 40, 30, 10]
]
...