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

22 lines
747 B
JavaScript

/*************************************************************************************/
// -->Template Name: Bootstrap Press Admin
// -->Author: Themedesigner
// -->Email: niravjoshi87@gmail.com
// -->File: c3_chart_JS
/*************************************************************************************/
$(function() {
var a = c3.generate({
bindto: "#rotated-axis",
size: { height: 400 },
color: { pattern: ["#4fc3f7", "#2962FF"] },
data: {
columns: [
["data1", 50, 250, 90, 400, 300, 150],
["data2", 30, 100, 85, 50, 15, 25]
],
types: { data1: "bar" }
},
axis: { rotated: !0 },
grid: { y: { show: !0 } }
});
});