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.
19 lines
602 B
19 lines
602 B
/*************************************************************************************/ |
|
// -->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: ["#26c6da"] }, |
|
data: { |
|
columns: [["option1", 350, 80, 250, 400, 190, 250]], |
|
type: "bar", |
|
}, |
|
axis: { rotated: !0 }, |
|
grid: { y: { show: !0 } }, |
|
}); |
|
});
|
|
|