Primer Commit
This commit is contained in:
25
dist/js/pages/c3-chart/data/c3-row-oriented.js
vendored
Normal file
25
dist/js/pages/c3-chart/data/c3-row-oriented.js
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
/*************************************************************************************/
|
||||
// -->Template Name: Bootstrap Press Admin
|
||||
// -->Author: Themedesigner
|
||||
// -->Email: niravjoshi87@gmail.com
|
||||
// -->File: c3_chart_JS
|
||||
/*************************************************************************************/
|
||||
$(function() {
|
||||
var o = c3.generate({
|
||||
bindto: "#row-oriented",
|
||||
size: { height: 400 },
|
||||
color: { pattern: ["#2962FF", "#343a40", "#4fc3f7"] },
|
||||
data: {
|
||||
rows: [
|
||||
["option1", "option2", "option3"],
|
||||
[300, 120, 90],
|
||||
[240, 160, 40],
|
||||
[290, 200, 50],
|
||||
[230, 160, 120],
|
||||
[300, 130, 80],
|
||||
[320, 220, 90]
|
||||
]
|
||||
},
|
||||
grid: { y: { show: !0 } }
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user