Subversion Repositories ALCASAR

Rev

Rev 2138 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log

Rev Author Line No. Line
2138 richard 1
//Création du graphe
2009 raphael.pi 2
var XXCONFXX = {
2288 tom.houday 3
	type: 'XXTYPEXX', //line, bar, radar, pie, doughnut
2009 raphael.pi 4
	data: {
5
		datasets: [{ //valeur de mes attributs de graph
2288 tom.houday 6
			data: [XXDATAXX],
7
			backgroundColor: [XXCOLORXX],//couleur des attributs '#F7464A','#46BFBD','#FDB45C','#949FB1','#4D5360','#33CC33','#6699ff','#996633','#9966ff','#ffff66'
2009 raphael.pi 8
		}],
9
		labels: [XXLABELSXX] //labels
10
	},
11
	options: {
12
		title: { //titre du graph
13
			display: true,
14
			text: 'XXTITLEXX',
15
			fontFamily: "Calibri",
16
			fontSize : 20,
17
		},
18
		responsive: false,
19
		animation: false,
20
		animateRotate: false,
21
		legend: { //display : 'pie' => true // 'autre' => false
22
			display: XXLEGENDXX,
23
			position: 'right',
24
		},
25
		//ne pas commenter pour afficher la valeur de l'axe : 'pie' => false // 'autre' => true
26
		XXCOMMENT-BEGINXX
27
		scales: { 
28
			yAxes: [{
2013 raphael.pi 29
				ticks: {
2288 tom.houday 30
					beginAtZero: true
31
				},
2009 raphael.pi 32
				scaleLabel: {
2288 tom.houday 33
					display: true,
34
					labelString: 'XXYLABELXX'
2009 raphael.pi 35
				}
36
			}]
37
		},
38
		XXCOMMENT-ENDXX
39
	}
40
};
41