echarts柱状图 如何让柱子重叠

如何在echarts柱状图的每个系列里面,为每个柱子设置阴影?
就像这样:

img

现在用的是series.barGap这个参数 设置为-100%;
但是这样的话 会将每个系列的所有柱子 重叠到一起.比如:
我有两个柱子,需要为这两个柱子分别设置个阴影柱子. 用上面的方法呢,会将这4个柱子重叠起来, 而不是两两分组.
有什么办法呢?

在series里设置showBackground: true,

series: [
    {
      name: '2011',
      type: 'bar',
      data: [18203, 23489, 29034, 104970, 131744, 630230],
      showBackground: true,
      backgroundStyle: {
        color: 'rgba(180, 180, 180, 0.2)'
      }
    },
    {
      name: '2012',
      type: 'bar',
      data: [19325, 23438, 31000, 121594, 134141, 681807],
      showBackground: true,
    }
  ]

如果你想要图一的效果,就按照图二那样写,望采纳

img

img