Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

chart js donut

var ctx = document.getElementById("myChart");
var myChart = new Chart(ctx, {
  type: 'pie',
  data: {
    labels: ['OK', 'WARNING', 'CRITICAL', 'UNKNOWN'],
    datasets: [{
      label: '# of Tomatoes',
      data: [12, 19, 3, 5],
      backgroundColor: [
        'rgba(255, 99, 132, 0.5)',
        'rgba(54, 162, 235, 0.2)',
        'rgba(255, 206, 86, 0.2)',
        'rgba(75, 192, 192, 0.2)'
      ],
      borderColor: [
        'rgba(255,99,132,1)',
        'rgba(54, 162, 235, 1)',
        'rgba(255, 206, 86, 1)',
        'rgba(75, 192, 192, 1)'
      ],
      borderWidth: 1
    }]
  },
  options: {
   	//cutoutPercentage: 40,
    responsive: false,

  }
});
Comment

PREVIOUS NEXT
Code Example
Javascript :: use react awesome slider in react js 
Javascript :: How to loop through an object in JavaScript with the Object.values() method 
Javascript :: jQuery Stop Animations 
Javascript :: ejemplo archivo json 
Javascript :: date format in jquery 
Javascript :: javascript trigger keypress 
Javascript :: angular input 
Javascript :: new Map() collection in react state 
Javascript :: vue router transition 
Javascript :: js reverse string 
Javascript :: http module nodejs 
Javascript :: multipart/form-data ajax jquery 
Javascript :: reference of event listener funtion to remove 
Javascript :: vue component lifecycle 
Javascript :: dull a background image in react native 
Javascript :: check if element with class has another class javascript 
Javascript :: double logical not javascript 
Javascript :: django ajax redirect to a view on success 
Javascript :: material ui icons next js 
Javascript :: jest mock mockname 
Javascript :: console.log() Print Values Stored in Variables 
Javascript :: javascript regex One or more occurrences of the pattern 
Javascript :: js map array to object 
Javascript :: Get the Last Items in an Array 
Javascript :: tinymce adding tbale buttons 
Javascript :: what is $ in jquery 
Javascript :: jquery ajax methods 
Javascript :: xpath in javascript 
Javascript :: find all of array which satisfy condition javascript 
Javascript :: discord js if no arguments 
ADD CONTENT
Topic
Content
Source link
Name
2+4 =