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.
24 lines
773 B
24 lines
773 B
/*************************************************************************************/ |
|
// -->Template Name: Bootstrap Press Admin |
|
// -->Author: Themedesigner |
|
// -->Email: niravjoshi87@gmail.com |
|
// -->File: c3_chart_JS |
|
/*************************************************************************************/ |
|
$(function () { |
|
var t = c3.generate({ |
|
bindto: "#multiple-xy", |
|
size: { height: 400 }, |
|
point: { r: 4 }, |
|
color: { pattern: ["#1e88e5", "#00acc1"] }, |
|
data: { |
|
xs: { option1: "x1", option2: "x2" }, |
|
columns: [ |
|
["x1", 10, 20, 30, 50, 70, 100], |
|
["x2", 25, 50, 75, 100, 120], |
|
["option1", 30, 200, 50, 300, 85, 250], |
|
["option2", 20, 200, 140, 100, 190], |
|
], |
|
}, |
|
grid: { y: { show: !0 } }, |
|
}); |
|
});
|
|
|