其他分享
首页 > 其他分享> > echarts让设置legend宽度不生效

echarts让设置legend宽度不生效

作者:互联网

 仔细看源码发现问题了, 是 orient="horizontal" 的时候,只有width会起作用,height为auto;orient="vertical" 的时候只有height会起作用,width为auto。

legend: {
            orient: 'horizontal',
            bottom: 'bottom',
            left: 'center',
            padding: [0, 0, 10, 0],
            width: 200,
            textStyle: {
              width: 50,
              overflow: 'break',
            },
          },

  

标签:echarts,bottom,auto,height,width,legend,宽度,会起,orient
来源: https://www.cnblogs.com/wlj-axia/p/16266297.html