46 行
		
	
	
	
		
			894 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			46 行
		
	
	
	
		
			894 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 color = ifDarkModeThemeReturn('white', 'grey');
 | 
						|
		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,
 | 
						|
							fontColor: color
 | 
						|
						}
 | 
						|
					}],
 | 
						|
					xAxes: [{
 | 
						|
						ticks: {
 | 
						|
							fontColor: color
 | 
						|
						}
 | 
						|
					}]
 | 
						|
				},
 | 
						|
				legend: {
 | 
						|
					labels: {
 | 
						|
						fontColor: color
 | 
						|
					}
 | 
						|
				}
 | 
						|
			}
 | 
						|
		});
 | 
						|
	}
 | 
						|
});
 |