Files
hmngy_pasarela_Frontend/dist/js/pages/c3-chart/data/c3-row-oriented.js
LuisAngelSalinasl 8fcbb98114 Primer Commit
2025-08-04 18:51:41 -06:00

25 lines
824 B
JavaScript

/*************************************************************************************/
// -->Template Name: Bootstrap Press Admin
// -->Author: Themedesigner
// -->Email: niravjoshi87@gmail.com
// -->File: c3_chart_JS
/*************************************************************************************/
$(function() {
var o = c3.generate({
bindto: "#row-oriented",
size: { height: 400 },
color: { pattern: ["#2962FF", "#343a40", "#4fc3f7"] },
data: {
rows: [
["option1", "option2", "option3"],
[300, 120, 90],
[240, 160, 40],
[290, 200, 50],
[230, 160, 120],
[300, 130, 80],
[320, 220, 90]
]
},
grid: { y: { show: !0 } }
});
});