34 行
		
	
	
	
		
			679 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			34 行
		
	
	
	
		
			679 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| $.ajax({
 | |
| 	url: base_url+'index.php/dayswithqso/get_days',
 | |
| 	success: function(data) {
 | |
| 		var labels = [];
 | |
| 		var dataDxcc = [];
 | |
| 		$.each(data, function(){
 | |
| 			labels.push(this.Year);
 | |
| 			dataDxcc.push(this.Days);
 | |
| 		});
 | |
| 		var ctx = document.getElementById("myChartDiff").getContext('2d');
 | |
| 		var myChart = new Chart(ctx, {
 | |
| 			type: 'bar',
 | |
| 			data: {
 | |
| 				labels: labels,
 | |
| 				datasets: [{
 | |
| 					label: 'Days with QSOs',
 | |
| 					data: dataDxcc,
 | |
| 					backgroundColor: 'rgba(54, 162, 235, 0.2)',
 | |
| 					borderColor: 'rgba(54, 162, 235, 1)',
 | |
| 					borderWidth: 2
 | |
| 				}]
 | |
| 			},
 | |
| 			options: {
 | |
| 				scales: {
 | |
| 					yAxes: [{
 | |
| 						ticks: {
 | |
| 							beginAtZero:true
 | |
| 						}
 | |
| 					}]
 | |
| 				},
 | |
| 			}
 | |
| 		});
 | |
| 	}
 | |
| });
 |