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.
23 lines
702 B
23 lines
702 B
1 year ago
|
/*************************************************************************************/
|
||
|
// -->Template Name: Bootstrap Press Admin
|
||
|
// -->Author: Themedesigner
|
||
|
// -->Email: niravjoshi87@gmail.com
|
||
|
// -->File: c3_chart_JS
|
||
|
/*************************************************************************************/
|
||
|
$(function () {
|
||
|
var a = c3.generate({
|
||
|
bindto: "#area-chart",
|
||
|
size: { height: 400 },
|
||
|
point: { r: 4 },
|
||
|
color: { pattern: ["#1e88e5", "#00acc1"] },
|
||
|
data: {
|
||
|
columns: [
|
||
|
["data1", 130, 100, 150, 200, 100, 50],
|
||
|
["data2", 0, 350, 200, 150, 50, 0],
|
||
|
],
|
||
|
types: { data1: "area", data2: "area-spline" },
|
||
|
},
|
||
|
grid: { y: { show: !0 } },
|
||
|
});
|
||
|
});
|