I had a problem generating a chart when it has only one information to display and contains all 360º. Here is an example:
<!doctype html>
<html>
<head>
<title>Chart Test</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/1.0.1-beta.2/Chart.js"></script>
</head>
<body>
<canvas width="200" height="200"></canvas>
<script>
var canvas = $( 'canvas' )
, data = [
{
value : 300,
color : "#F7464A",
highlight : "#FF5A5E",
label : "Red"
}
]
, options = {"percentageInnerCutout":70,"showTooltips":false,"animateScale":true}
, chart = new Chart( canvas.get( 0 ).getContext( '2d' ) ).Doughnut( data, options );
</script>
</body>
</html>
Run codeHide resultImmediately after the graph ends with a 360º animation in the default Android browser, it disappears, but this does not happen in Chrome. Tested on Sony Xperia (v4.1.2) and Samsung S3.
This problem does not occur on my desktop, so it seems to be related to the default Android browser.
I also tested with the latest chart.js version 1.0.1-beta.4 ...
Here's an open question for github for this.
Has anyone solved this problem?