Primer Commit
This commit is contained in:
21
dist/js/pages/c3-chart/data/c3-column-oriented.js
vendored
Normal file
21
dist/js/pages/c3-chart/data/c3-column-oriented.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 n = c3.generate({
|
||||
bindto: "#column-oriented",
|
||||
size: { height: 400 },
|
||||
color: { pattern: ["#2962FF", "#4fc3f7", "#f62d51"] },
|
||||
data: {
|
||||
columns: [
|
||||
["option1", 50, 60, 40, 50, 20, 30],
|
||||
["option2", 220, 130, 240, 90, 130, 200],
|
||||
["option3", 250, 250, 400, 160, 200, 300]
|
||||
]
|
||||
},
|
||||
grid: { y: { show: !0 } }
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user