如何在高图中删除条形图上的白色边框?

问题描述 投票:0回答:1

enter image description here

这里是条形图上显示的白色边框的图片,请您帮忙删除白色边框吗?

angularjs highcharts
1个回答
0
投票

将plotOptions.bar.borderWidth设置为0是您正在寻找的解决方案。

演示:https://jsfiddle.net/BlackLabel/foapqu40/

  plotOptions: {
    bar: {
        borderWidth: 0
    }
  },

API:https://api.highcharts.com/highcharts/plotOptions.bar.borderWidth

© www.soinside.com 2019 - 2024. All rights reserved.