Bjr;

je souhaite generer un graphe dont le code source JS est le suivant :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
 
Ext.onReady(function () {
    var store = Ext.create('Ext.data.JsonStore', {
        fields: ['year', 'comedy', 'action', 'drama', 'thriller'],
        data: [
                {year: 2005, comedy: 34000000, action: 23890000, drama: 18450000, thriller: 20060000},
                {year: 2006, comedy: 56703000, action: 38900000, drama: 12650000, thriller: 21000000},
                {year: 2007, comedy: 42100000, action: 50410000, drama: 25780000, thriller: 23040000},
                {year: 2008, comedy: 38910000, action: 56070000, drama: 24810000, thriller: 26940000}
              ]
    });
 
    var panel1 = Ext.create('widget.panel', {
        width: 800,
        height: 400,
        title: 'Stacked Bar Chart - Movies by Genre',
        renderTo: Ext.getBody(),
        layout: 'fit',
        items: {
            xtype: 'chart',
            animate: true,
            shadow: true,
            store: store,
            legend: {
                position: 'right'
            },
            axes: [{
                type: 'Numeric',
                position: 'bottom',
                fields: ['comedy', 'action', 'drama', 'thriller'],
                title: false,
                grid: true,
                label: {
                    renderer: function(v) {
                        return String(v).replace(/000000$/, 'M');
                    }
                },
                roundToDecimal: false
            }, {
                type: 'Category',
                position: 'left',
                fields: ['year'],
                title: false
            }],
            series: [{
                type: 'bar',
                axis: 'bottom',
                gutter: 80,
                xField: 'year',
                yField: ['comedy', 'action', 'drama', 'thriller'],
                stacked: true,
                tips: {
                    trackMouse: true,
                    width: 65,
                    height: 28,
                    renderer: function(storeItem, item) {
                        this.setTitle(String(item.value[1] / 1000000) + 'M');
                    }
                }
            }]
        }
    });
});
Mon objectif est de remplacer les valeurs en dur par des valeurs que je récupérer de la base MySQL sous format json :

{"item":[{"MOIS":"1","TYPE_PRODUIT":"LOGICIEL","CHIFFRE_AFFAIRES":"500"},{"MOIS":"1","TYPE_PRODUIT":"MATERIEL","CHIFFRE_AFFAIRES":"1600"},{"MOIS":"1","TYPE_PRODUIT":"SERVICE","CHIFFRE_AFFAIRES":"2290"},{"MOIS":"2","TYPE_PRODUIT":"LOGICIEL","CHIFFRE_AFFAIRES":"1400"},
...

mois = c'est les années
type_produit = type de film ('year', 'comedy', 'action', 'drama', 'thriller')
chiffre_affaire = nbre d'entrées

J'ai déjà commencé à faire une JS du style :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
 
Ext.onReady(function () {
   var store = new Ext.data.JsonStore({
    autoLoad: true,
    url : 'lp-graph-js.php', 
    root : 'item', 
    fields: [
        'MOIS', 
        'TYPE_PRODUIT',
        'CHIFFRE_AFFAIRE'],
Merci de m'aider à allez jusqu'au bout.