1.0.7 • Published 7 years ago

mozaik-ext-charts v1.0.7

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

Mozaïk charts widget

Bar Chart

iframe

Bar Chart parameters

keyrequireddescription
titleyesTitle of the widget
datayes Data of the widget

Bar Chart usage

{
    type: 'charts.custom_bar_chart_widget',
    title:'Performance Metrics for Baseline',
    columns: 2, rows: 2,data: [{x: 'test1', y: 35},{x: 2, y: 45},{x: 3, y: 235},{x: 4, y: 75}],
    x: 0, y: 2
}

Line Chart

iframe

Line Chart parameters

keyrequireddescription
titleyesTitle of the widget
datayes Data of the widget
totalyes Total title of the widget
resultsyes Data of the widget
minno Min of Y axis
maxno Max of Y axis
tickCountno X axis spacer

Line Chart usage

{
    type: 'charts.custom_line_chart_widget',
    title:'Performance Metrics for Name Entity',
    columns: 2, rows: 2,total: 1207, results: [{date:'20160103',total:1207,last:1024},{date:'20160114',total:1207,last:978},
    {date:'20160107',total:1207,last:867},{date:'20160117',total:1207,last:1026}],
    min:0,max:1207,tickCount:30,
    x: 0, y: 0
}