dashbi-widget-chart
v0.1.1
Published
Dashbi widget that displays chart using chartist.js
Maintainers
Readme
dashbi-widget-chart
Dashbi widget that displays chart using chartist.js

Usage
Install
npm install --save dashbi-widget-chartRegister
Dashbi should detect and auto-register widget.
Configuration
Name | Type | Description
--- | --- | ---
type | String | Type of chart. Options: Line, Bar, Chart
useStateKey | String | Which state key should be used for data presentation
options | Object | Additional chartist.js options
Example
Lets' say that some-data-provider provides state which has key randomNumber:
dashbiLayout.addWidget({
name: 'chart',
title: 'My Line Chart',
params: {
type: 'Line',
useStateKey: 'randomNumber',
options: {
low: 0,
hight: 1000
}
},
source: {
name: 'some-data-provider'
}
});