option = {
    title : {
        text: 'Ԥ vs Budget vs spending'
    },
    tooltip : {
        trigger: 'axis'
    },
    legend: {
        orient : 'vertical',
        x : 'right',
        y : 'bottom',
        data:['Ԥ䣨Allocated Budget','ʵʿActual Spending']
    },
    toolbox: {
        show : true,
        feature : {
            mark : {show: true},
            dataView : {show: true, readOnly: false},
            restore : {show: true},
            saveAsImage : {show: true}
        }
    },
    polar : [
       {
           indicator : [
               { text: 'ۣsales', max: 6000},
               { text: 'Administration', max: 16000},
               { text: 'ϢInformation Techology', max: 30000},
               { text: 'ͷCustomer Support', max: 38000},
               { text: 'зDevelopment', max: 52000},
               { text: 'гMarketing', max: 25000}
            ]
        }
    ],
    calculable : true,
    series : [
        {
            name: 'Ԥ vs Budget vs spending',
            type: 'radar',
            data : [
                {
                    value : [4300, 10000, 28000, 35000, 50000, 19000],
                    name : 'Ԥ䣨Allocated Budget'
                },
                 {
                    value : [5000, 14000, 28000, 31000, 42000, 21000],
                    name : 'ʵʿActual Spending'
                }
            ]
        }
    ]
};