Add color to graphe
This commit is contained in:
parent
815d7abe21
commit
177752a6f2
6 changed files with 56 additions and 14 deletions
|
@ -53,11 +53,18 @@ $(function () {
|
|||
},
|
||||
series: [{
|
||||
type: 'pie',
|
||||
name: 'Etat du Rezo',
|
||||
name: 'Pourcentage',
|
||||
innerSize: '50%',
|
||||
data: [
|
||||
['Tranchés', {{ stats[0] }}],
|
||||
['Vivants', {{ stats[1] }}]
|
||||
{
|
||||
name: 'Tranchés',
|
||||
y: {{ stats[0] }},
|
||||
color: '#FF0000',
|
||||
},{
|
||||
name: 'Vivants',
|
||||
y: {{ stats[1] }},
|
||||
color: '#FFCC00',
|
||||
}
|
||||
]
|
||||
}]
|
||||
});
|
||||
|
|
|
@ -54,11 +54,18 @@ $(function () {
|
|||
},
|
||||
series: [{
|
||||
type: 'pie',
|
||||
name: 'Etat du Rezo',
|
||||
name: 'Pourcentage',
|
||||
innerSize: '50%',
|
||||
data: [
|
||||
['Tranchés', {{ stats[0] }}],
|
||||
['Vivants', {{ stats[1] }}]
|
||||
{
|
||||
name: 'Tranchés',
|
||||
y: {{ stats[0] }},
|
||||
color: '#FF0000',
|
||||
},{
|
||||
name: 'Vivants',
|
||||
y: {{ stats[1] }},
|
||||
color: '#FFCC00',
|
||||
}
|
||||
]
|
||||
}]
|
||||
});
|
||||
|
|
|
@ -57,8 +57,15 @@
|
|||
name: 'Etat du Rezo',
|
||||
innerSize: '50%',
|
||||
data: [
|
||||
['Tranchés', {{ stats[0] }}],
|
||||
['Vivants', {{ stats[1] }}]
|
||||
{
|
||||
name: 'Tranchés',
|
||||
y: {{ stats[0] }},
|
||||
color: '#FF0000',
|
||||
},{
|
||||
name: 'Vivants',
|
||||
y: {{ stats[1] }},
|
||||
color: '#FFCC00',
|
||||
}
|
||||
]
|
||||
}]
|
||||
});
|
||||
|
|
|
@ -43,8 +43,15 @@ $(function () {
|
|||
name: 'Etat du Rezo',
|
||||
innerSize: '50%',
|
||||
data: [
|
||||
['Tranchés', {{ stats[0] }}],
|
||||
['Vivants', {{ stats[1] }}]
|
||||
{
|
||||
name: 'Tranchés',
|
||||
y: {{ stats[0] }},
|
||||
color: '#FF0000',
|
||||
},{
|
||||
name: 'Vivants',
|
||||
y: {{ stats[1] }},
|
||||
color: '#FFCC00',
|
||||
}
|
||||
]
|
||||
}]
|
||||
});
|
||||
|
|
|
@ -56,8 +56,15 @@ $(function () {
|
|||
name: 'Etat du Rezo',
|
||||
innerSize: '50%',
|
||||
data: [
|
||||
['Tranchés', {{ stats[0] }}],
|
||||
['Vivants', {{ stats[1] }}]
|
||||
{
|
||||
name: 'Tranchés',
|
||||
y: {{ stats[0] }},
|
||||
color: '#FF0000',
|
||||
},{
|
||||
name: 'Vivants',
|
||||
y: {{ stats[1] }},
|
||||
color: '#FFCC00',
|
||||
}
|
||||
]
|
||||
}]
|
||||
});
|
||||
|
|
|
@ -41,8 +41,15 @@ $(function () {
|
|||
name: 'Etat du Rezo',
|
||||
innerSize: '50%',
|
||||
data: [
|
||||
['Tranchés', {{ stats[0] }}],
|
||||
['Vivants', {{ stats[1] }}]
|
||||
{
|
||||
name: 'Tranchés',
|
||||
y: {{ stats[0] }},
|
||||
color: '#FF0000',
|
||||
},{
|
||||
name: 'Vivants',
|
||||
y: {{ stats[1] }},
|
||||
color: '#FFCC00',
|
||||
}
|
||||
]
|
||||
}]
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue