漏斗图各种参数实验

描述:当前是关于Echarts图表中的 漏斗图 示例。
 
            option = {
    title: {
        text: '漏斗图',
        subtext: '纯属虚构'
    },
    tooltip: {
        trigger: 'item',
        formatter: "{a} <br/>{b} : {c}%"
    },
    toolbox: {
        feature: {
            dataView: {
                readOnly: false
            },
            restore: {},
            saveAsImage: {}
        }
    },
    legend: {
        data: ['展现', '点击', '访问', '咨询', '订单']
    },
    calculable: true,
    series: [{
        name: '漏斗图',
        type: 'funnel',
        left: '10%',
        top: 60,
        //x2: 80,
        bottom: 60,
        width: '80%',
        // height: {totalHeight} - y - y2,
        min: 0,
        max: 100,
        minSize: '0%',
        maxSize: '100%',
        sort: 'descending',
        gap: 2,
        label: {
            show: true,
            position: 'inside'
        },
        labelLine: {
            length: 10,
            lineStyle: {
                width: 1,
                type: 'solid'
            }
        },
        itemStyle: {
            borderColor: '#fff',
            borderWidth: 1
        },
        emphasis: {
            label: {
                fontSize: 20
            }
        },
        data: [{
                value: 60,
                name: '访问'
            },
            {
                value: 40,
                name: '咨询'
            },
            {
                value: 20,
                name: '订单'
            },
            {
                value: 80,
                name: '点击'
            },
            {
                value: 100,
                name: '展现',
                itemStyle: {
                    color: 'blue',
                    borderColor: 'red', //描边线颜色
                    borderWidth: 2, //描边线宽
                    borderType: 'solid', //描边线形
                    shadowColor: 'rgba(0, 0, 0, 0.5)',
                    shadowBlur: 10, //图形阴影的模糊大小
                    opacity: 0.5 //透明度
                }
            }
        ]
    }]
};