高图中的linecap属性不起作用

时间:2014-03-02 04:27:07

标签: highcharts

在highcharts中是否有linecap的示例。 http://api.highcharts.com/highstock#plotOptions.line.linecap

我想将它从圆形更改为对接。但它不起作用。

1 个答案:

答案 0 :(得分:2)

正如我所见,你可以使用square和effect应该是相同的

plotOptions:{
            line:{
                linecap: 'square',
                lineWidth:10,
                marker:{
                    enabled:false
                }
            }
        },

http://jsfiddle.net/9XSxD/