eChart将图表向右对齐

时间:2019-03-29 11:00:53

标签: pie-chart echarts

我在应用程序中使用了一个嵌套的饼图- 配置是-

options: {
    grid: {
        left: '300px'
    },
    legend: {
        orient: 'vertical',
        x: 'left',
        data: ['Autobots','Deceptiocons']
    },
    series: [
        {
            name: 'Audit',
            type: 'pie',
            radius: [30%, '50%'],
            label: {
                normal: {
                    position: 'center',
                    color: '#fff'
                }
            },
            data: [{ value: 500, name: 'Autobots'},{ value: 500, name: 'Decepticons'}]
        }
    ]
}

我正在使用grid,但是图表仍显示在中心。

1 个答案:

答案 0 :(得分:0)

折线图,条形图和散点图(气泡图)可以绘制在网格中

对于饼图,请使用饼图的中心位置:http://echarts.baidu.com/option.html#series-pie.center

center: ['20%', '50%']