$( document ).ready(function() { Chart.defaults.global.multiTooltipTemplate = function (label) { return label.datasetLabel + ': ' + label.value.toString().replace(/\B(?=(\d{3})+(?!\d))/g, "."); }; Chart.defaults.global.scaleLabel = function (label) { return label.value.toString().replace(/\B(?=(\d{3})+(?!\d))/g, "."); }; //** REFUNDS DASHBOARD ** // var eventsPendingForRefund = [ { value: 35, color:"#00A0D4", highlight: "#008cba", label: "Eventos Terminados" }, { value: 60, color: "#00BD9C", highlight: "#00a384", label: "Eventos Activos" } ]; var refundsContext = new Chart(document.getElementById("js-refunds__dashboard").getContext("2d")).Doughnut(eventsPendingForRefund, { percentageInnerCutout: 60 }); // var moneyInBoletia = [ // { // value: 20000, // color:"#00A0D4", // highlight: "#008cba", // label: "Paypal" // }, // { // value: 20000, // color: "#00BD9C", // highlight: "#00a384", // label: "Depósito Bancario" // }, // { // value: 12000, // color: "#E56B2D", // highlight: "#d9652b", // label: "Oxxo" // }, // { // value: 78000, // color: "#33495F", // highlight: "#2a3d4f", // label: "Boletos Físicos" // } // ]; // var mpc = $("#js-chart-refund__payments").get(0).getContext("2d"); // var myPieChart = new Chart(mpc).Pie(moneyInBoletia); //** Event Detail Chart ** // // var data = { // labels: ["Mayo 1-7", "Mayo 8-16", "Mayo 17-24", "Mayo 25-31", "Junio 1-7", "Junio 8-18", "Junio 19-25"], // datasets: [ // { // label: "Ventas", // fillColor: "rgba(151,187,205,0.2)", // strokeColor: "rgba(151,187,205,1)", // pointColor: "rgba(151,187,205,1)", // pointStrokeColor: "#fff", // pointHighlightFill: "#fff", // pointHighlightStroke: "rgba(151,187,205,1)", // data: [50000, 35000, 35000, 38000, 40000, 45000, 48000] // } // ] // }; // var context = new Chart(document.getElementById("js-sales__event-detail").getContext("2d")).Line(data, { // bezierCurve: false, // scaleLabel: // function(label){return '$' + label.value.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");} // }); //** Event Detail Chart ** // // var mes = { // labels: ["Mayo 1-7", "Mayo 8-16", "Mayo 17-24", "Mayo 25-31"], // datasets: [ // { // label: "Ventas", // fillColor: "rgba(151,187,205,0.2)", // strokeColor: "rgba(151,187,205,1)", // pointColor: "rgba(151,187,205,1)", // pointStrokeColor: "#fff", // pointHighlightFill: "#fff", // pointHighlightStroke: "rgba(151,187,205,1)", // data: [40000, 44000, 55000, 60000] // } // ] // }; // var mesContext = new Chart(document.getElementById("js-sales__dashboard").getContext("2d")).Line(mes, { // bezierCurve: false // }); // var vendedores = [ // { // value: 300, // color:"#FF7733", // highlight: "#FF7733", // label: "Roger" // }, // { // value: 50, // color: "#00A0D4", // highlight: "#00A0D4", // label: "Mariana" // }, // { // value: 100, // color: "#33495F", // highlight: "#33495F", // label: "Carlos" // }, // { // value: 100, // color: "#00A385", // highlight: "#00A385", // label: "Organico" // } // ] // var vendedoresContext = new Chart(document.getElementById("js-sales__by-person").getContext("2d")).Pie(vendedores, { // legendTemplate : "" // }); // legend(document.getElementById("legendDiv"), vendedores); });