Package Exports
- dashblocks
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (dashblocks) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
dashblocks
Note: under active development
Declarative Interactive Dashboards
Dashblocks enables easily creating complex interactive dashboards simply by declaring dashboard structure as json or javascript object.
Dashblocks uses popular charting libraries to render chars: d3, Chart.js, Dygraphs, Plotly.js ...
For example, this dashboard:

created by this dashboard declaration:
{
layout: {
type: 'grid'
},
widgets: [
{
id: 'w2',
type: 'DbDygraphsBar',
cspan: 16,
height: 250,
properties: {
options: {
stackedGraph: true,
title: 'Traffic over time',
ylabel: 'Requests, Mil.',
labels: ['Date', 'Success', 'Error'],
legend: 'always'
}
}
},
{
id: 'w3',
type: 'DbChartjsPie',
cspan: 4,
height: 250
},
{
id: 'w4',
type: 'DbChartjsPie',
cspan: 4,
height: 250
},
{
id: 'w6',
type: 'DbChartjsHorizontalBar',
cspan: 4,
height: 250
},
{
id: 'w7',
type: 'DbChartjsBar',
cspan: 4,
height: 250
}
]
}Roadmap
Roadmap and plans roughly defined in TODO