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

21 lines
749 B
JavaScript

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