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.
46 lines
991 B
46 lines
991 B
1 year ago
|
/*************************************************************************************/
|
||
|
// -->Template Name: Bootstrap Press Admin
|
||
|
// -->Author: Themedesigner
|
||
|
// -->Email: niravjoshi87@gmail.com
|
||
|
// -->File: c3_chart_JS
|
||
|
/*************************************************************************************/
|
||
|
$(function () {
|
||
|
var i = c3.generate({
|
||
|
bindto: "#tick-culling",
|
||
|
size: { height: 400 },
|
||
|
color: { pattern: ["#00acc1", "#E91E63"] },
|
||
|
data: {
|
||
|
columns: [
|
||
|
[
|
||
|
"options",
|
||
|
30,
|
||
|
200,
|
||
|
100,
|
||
|
400,
|
||
|
150,
|
||
|
250,
|
||
|
30,
|
||
|
200,
|
||
|
100,
|
||
|
400,
|
||
|
150,
|
||
|
250,
|
||
|
30,
|
||
|
200,
|
||
|
100,
|
||
|
400,
|
||
|
150,
|
||
|
250,
|
||
|
200,
|
||
|
100,
|
||
|
400,
|
||
|
150,
|
||
|
250,
|
||
|
],
|
||
|
],
|
||
|
},
|
||
|
axis: { x: { type: "category", tick: { culling: { max: 4 } } } },
|
||
|
grid: { y: { show: !0 } },
|
||
|
});
|
||
|
});
|