<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>chart doughnut</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.6.0/Chart.min.js" type="text/javascript"></script>
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
background: transparent url(http://i.imgur.com/gwlPu.jpg) no-repeat center;
background-size: 50px 50px;
<div Style="font-family: Corbel; font-size: small ;text-align:center " class="row">
<div style="width:300px;height:300px">
<canvas id="myChart" style="padding: 0;margin: auto;display: block; "> </canvas>
url: '@Url.RouteUrl(new{ action="GetAnswer", controller="Home"})',
contentType: "application/json; charset=utf-8",
success: function (mems) {
var aDatasets1 = aData[1];
backgroundColor: ["rgba(54, 162, 235, 0.2)", "rgba(255, 99, 132, 0.2)", "rgba(255, 159, 64, 0.2)", "rgba(255, 205, 86, 0.2)", "rgba(75, 192, 192, 0.2)", "rgba(153, 102, 255, 0.2)", "rgba(201, 203, 207, 0.2)"],
borderColor: ["rgb(54, 162, 235)", "rgb(255, 99, 132)", "rgb(255, 159, 64)", "rgb(255, 205, 86)", "rgb(75, 192, 192)", "rgb(153, 102, 255)", "rgb(201, 203, 207)"],
var ctx = $("#myChart").get(0).getContext("2d");
var myNewChart = new Chart(ctx, {
title: { display: true, text: 'CHART.JS DEMO CHART' },
legend: { position: 'bottom' },
xAxes: [{ gridLines: { display: false }, display: true, scaleLabel: { display: false, labelString: '' } }],
yAxes: [{ gridLines: { display: false }, display: true, scaleLabel: { display: false, labelString: '' }, ticks: { stepSize: 50, beginAtZero: true } }]