Files
LuisAngelSalinasl 8fcbb98114 Primer Commit
2025-08-04 18:51:41 -06:00

22 lines
741 B
JavaScript

/*************************************************************************************/
// -->Template Name: Bootstrap Press Admin
// -->Author: Themedesigner
// -->Email: niravjoshi87@gmail.com
// -->File: c3_chart_JS
/*************************************************************************************/
$(function() {
var n = c3.generate({
bindto: "#spline-chart",
size: { height: 400 },
point: { r: 4 },
color: { pattern: ["#2962FF", "#4fc3f7"] },
data: {
columns: [
["option1", 30, 200, 100, 250, 100, 250],
["option2", 130, 300, 140, 200, 150, 50]
],
type: "spline"
},
grid: { y: { show: !0 } }
});
});