You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
611 B

/*************************************************************************************/
// -->Template Name: Bootstrap Press Admin
// -->Author: Themedesigner
// -->Email: niravjoshi87@gmail.com
// -->File: c3_chart_JS
/*************************************************************************************/
$(function () {
var n = c3.generate({
bindto: "#range-y-axis",
size: { height: 400 },
color: { pattern: ["#00acc1", "#E91E63"] },
data: {
columns: [["Option", 250, 100, 400, 100, 200, 30]],
},
axis: { y: { max: 400, min: -400 } },
grid: { y: { show: !0 } },
});
});