强制显示所有 Label 的测试

描述:当前是关于Echarts图表中的 柱状图 示例。
 
            option = {
    xAxis : [
        {
            type : 'category',
            axisLabel: {
                interval: 0,
                showMaxLabel: true,
                showMinLabel: true,
                fontSize: 20
            },
            data : ['Monwwwwwwwwww', 'Tueeeee', 'Weeeeeeeeeeeeed', 'Thhhhhhhhhhhhhu', 'Frrrrrrrrrrrrrrrrri', 'Sat', 'Sun'],
            axisTick: {
                alignWithLabel: true
            }
        }
    ],
    yAxis : [
        {
            type : 'value'
        }
    ],
    series : [
        {
            name:'直接访问',
            type:'bar',
            barWidth: '60%',
            data:[10, 52, 200, 334, 390, 330, 220]
        }
    ]
};