Primer Commit
This commit is contained in:
21
dist/js/pages/c3-chart/bar-pie/c3-bar.js
vendored
Normal file
21
dist/js/pages/c3-chart/bar-pie/c3-bar.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/*************************************************************************************/
|
||||
// -->Template Name: Bootstrap Press Admin
|
||||
// -->Author: Themedesigner
|
||||
// -->Email: niravjoshi87@gmail.com
|
||||
// -->File: c3_chart_JS
|
||||
/*************************************************************************************/
|
||||
$(function() {
|
||||
var t = c3.generate({
|
||||
bindto: "#bar-chart",
|
||||
size: { height: 400 },
|
||||
color: { pattern: ["#4fc3f7"] },
|
||||
data: {
|
||||
columns: [
|
||||
["option1", 350, 80, 250, 400, 190, 250]
|
||||
],
|
||||
type: "bar"
|
||||
},
|
||||
axis: { rotated: !0 },
|
||||
grid: { y: { show: !0 } }
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user