mirror of
				https://github.com/KevinMidboe/vue-chartjs.git
				synced 2025-10-29 18:00:20 +00:00 
			
		
		
		
	Change deprecated ready() method to mounted() Change render() method to renderChart() method Signed-off-by: Jakub Juszczak <netghost03@gmail.com>
		
			
				
	
	
		
			30 lines
		
	
	
		
			958 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			958 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import PolarAreaChart from '../BaseCharts/PolarArea'
 | 
						|
 | 
						|
export default PolarAreaChart.extend({
 | 
						|
  mounted () {
 | 
						|
    this.renderChart({
 | 
						|
      labels: ['Eating', 'Drinking', 'Sleeping', 'Designing', 'Coding', 'Cycling', 'Running'],
 | 
						|
      datasets: [
 | 
						|
        {
 | 
						|
          label: 'My First dataset',
 | 
						|
          backgroundColor: 'rgba(179,181,198,0.2)',
 | 
						|
          pointBackgroundColor: 'rgba(179,181,198,1)',
 | 
						|
          pointBorderColor: '#fff',
 | 
						|
          pointHoverBackgroundColor: '#fff',
 | 
						|
          pointHoverBorderColor: 'rgba(179,181,198,1)',
 | 
						|
          data: [65, 59, 90, 81, 56, 55, 40]
 | 
						|
        },
 | 
						|
        {
 | 
						|
          label: 'My Second dataset',
 | 
						|
          backgroundColor: 'rgba(255,99,132,0.2)',
 | 
						|
          pointBackgroundColor: 'rgba(255,99,132,1)',
 | 
						|
          pointBorderColor: '#fff',
 | 
						|
          pointHoverBackgroundColor: '#fff',
 | 
						|
          pointHoverBorderColor: 'rgba(255,99,132,1)',
 | 
						|
          data: [28, 48, 40, 19, 96, 27, 100]
 | 
						|
        }
 | 
						|
      ]
 | 
						|
    })
 | 
						|
  }
 | 
						|
})
 |