tabler-ui
Version:
Premium and Open Source dashboard template with responsive and high quality UI. For Free!
58 lines • 849 B
JavaScript
require(['c3', 'jquery'], function (c3, $) {
$(document).ready(function() {
var chart = c3.generate({
bindto: '#{{ include.id }}',
padding: {
bottom: -10,
left: -1,
right: -1
},
data: {
names: {
data1: 'Users online'
},
columns: [
['data1', 30, 40, 10, 40, 12, 22, 40]
],
type: 'area'
},
legend: {
show: false
},
transition: {
duration: 0
},
point: {
show: false
},
tooltip: {
format: {
title: function (x) {
return '';
}
}
},
axis: {
y: {
padding: {
bottom: 0,
},
show: false,
tick: {
outer: false
}
},
x: {
padding: {
left: 0,
right: 0
},
show: false
}
},
color: {
pattern: ['{{ site.colors[include.color].hex }}']
}
});
});
});