Javascript examples for Chart.js:Bar Chart
Changing fontFamily on ChartJS for bar chart
<html> <head> <title>Chart.js Legend Customization</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://code.jquery.com/jquery-1.11.0.js"></script> <script type="text/javascript" src="https://code.jquery.com/mobile/1.4.4/jquery.mobile-1.4.4.min.js"></script> <link rel="stylesheet" type="text/css" href="https://code.jquery.com/mobile/1.4.4/jquery.mobile-1.4.4.min.css"> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.1.0/Chart.min.js"></script> </head> <body> <div style="width: 100%; height: 100%;"> <canvas id="myChart" style="width: 100%; height: auto;"></canvas> </div> <div id="js-legend" class="chart-legend"></div> <script type="text/javascript"> var data = {//from w ww . j av a2s . c o m labels: ["January", "February", "March", "April", "May", "June", "July"], datasets: [ { label: "My First dataset", backgroundColor: "rgba(255,99,132,0.2)", borderColor: "rgba(255,99,132,1)", borderWidth: 1, hoverBackgroundColor: "rgba(255,99,132,0.4)", hoverBorderColor: "rgba(255,99,132,1)", data: [65, 59, 80, 81, 56, 55, 40], } ] }; var options = { animation: { duration: 2000 }, scales: { yAxes: [{ display: true, ticks: { suggestedMin: 0, // minimum will be 0, unless there is a lower value. beginAtZero: true, // minimum value will be 0. suggestedMax: 10 }, gridLines: { display: false }, pointLabels: { fontFamily: "'Raleway'" } }], xAxes: [{ gridLines: { display: false }, ticks: { fontFamily: "Verdana", } }], }, }; var ctx = document.getElementById("myChart").getContext("2d"); var myBarChart = new Chart(ctx, { type: 'bar', data: data, options: options }); </script> </body> </html>