|
@@ -69,9 +69,9 @@ export default {
|
|
|
},
|
|
|
indicator: [
|
|
|
{ name: 'Sales', max: 10000 },
|
|
|
- { name: 'Administration', max: 20000 },
|
|
|
- { name: 'Information Techology', max: 20000 },
|
|
|
- { name: 'Customer Support', max: 20000 },
|
|
|
+ { name: 'Admin', max: 20000 },
|
|
|
+ { name: 'Information', max: 20000 },
|
|
|
+ { name: 'Customer', max: 20000 },
|
|
|
{ name: 'Development', max: 20000 },
|
|
|
{ name: 'Marketing', max: 20000 }
|
|
|
]
|
|
@@ -79,7 +79,7 @@ export default {
|
|
|
legend: {
|
|
|
left: 'center',
|
|
|
bottom: '10',
|
|
|
- data: ['Allocated Budget', 'Expected Spending', 'Actual Spending']
|
|
|
+ data: ['Allocated ', 'Expected', 'Actual']
|
|
|
},
|
|
|
series: [{
|
|
|
type: 'radar',
|
|
@@ -96,15 +96,15 @@ export default {
|
|
|
data: [
|
|
|
{
|
|
|
value: [5000, 7000, 12000, 11000, 15000, 14000],
|
|
|
- name: 'Allocated Budget'
|
|
|
+ name: 'Allocated'
|
|
|
},
|
|
|
{
|
|
|
value: [4000, 9000, 15000, 15000, 13000, 11000],
|
|
|
- name: 'Expected Spending'
|
|
|
+ name: 'Expected '
|
|
|
},
|
|
|
{
|
|
|
value: [5500, 11000, 12000, 15000, 12000, 12000],
|
|
|
- name: 'Actual Spending'
|
|
|
+ name: 'Actual '
|
|
|
}
|
|
|
],
|
|
|
animationDuration: animationDuration
|