G:
/
PleskVhosts
/
seeonsoft.com
/
hp.thefalconunited.com
/
up file
home
<!-- Optional JavaScript, Not optional it's need too --> <!-- jQuery first, then Popper.js, then Bootstrap JS --> <script src="js/jquery-3.3.1.min.js"></script> <script src="js/popper.min.js"></script> <script src="js/bootstrap-4.4.1.min.js"></script> <script src="js/customscriptfile.js"></script> <script src="vendors/chart.js-2.8.0/dist/Chart.min.js"></script> <!-- Page Scripts Ends --> <script> var ctx = document.getElementById("myChart"); var myChart = new Chart(ctx, { type: 'bar', data: { labels: ["January", "February", "March", "April", "May", "June"], datasets: [{ label: '# of Bookings', data: [12, 19, 3, 5, 10, 3], backgroundColor: [ 'rgba(255, 99, 132, 0.2)', 'rgba(54, 162, 235, 0.2)', 'rgba(255, 206, 86, 0.2)', 'rgba(75, 192, 192, 0.2)', 'rgba(153, 102, 255, 0.2)', 'rgba(255, 159, 64, 0.2)' ], borderColor: [ 'rgba(255,99,132,1)', 'rgba(54, 162, 235, 1)', 'rgba(255, 206, 86, 1)', 'rgba(75, 192, 192, 1)', 'rgba(153, 102, 255, 1)', 'rgba(255, 159, 64, 1)' ], borderWidth: 1 }] }, options: { scales: { yAxes: [{ ticks: { beginAtZero: true, } }], yAxes: [{ ticks: { // fontSize: 15, fontColor: 'black', } }], xAxes: [{ ticks: { // fontSize: 15, fontColor: 'black', beginAtZero: true, } }] } } }); </script> <script> var ctx = document.getElementById("myChart1"); var myChart = new Chart(ctx, { type: 'pie', data: { labels: ["January", "February", "March", "April", "May", "June"], datasets: [{ label: '# of Bookings', data: [12, 19, 3, 5, 10, 3], backgroundColor: [ 'rgba(260, 103, 134, 0.9)', 'rgba(59, 166, 237, 0.9)', 'rgba(260, 210, 88, 0.9)', 'rgba(80, 196, 194, 0.9)', 'rgba(158, 106, 257, 0.9)', 'rgba(260, 163, 66, 0.9)' ], borderColor: [ 'rgba(255,99,132,1)', 'rgba(54, 162, 235, 1)', 'rgba(255, 206, 86, 1)', 'rgba(75, 192, 192, 1)', 'rgba(153, 102, 255, 1)', 'rgba(255, 159, 64, 1)' ], borderWidth: 1 }] }, options: { scales: { yAxes: [{ ticks: { beginAtZero: true, } }], yAxes: [{ ticks: { // fontSize: 15, fontColor: 'black', } }], xAxes: [{ ticks: { // fontSize: 15, fontColor: 'black', beginAtZero: true, } }] } } }); </script> </body> </html>