在highcharts中是否有linecap的示例。 http://api.highcharts.com/highstock#plotOptions.line.linecap
我想将它从圆形更改为对接。但它不起作用。
答案 0 :(得分:2)
正如我所见,你可以使用square和effect应该是相同的
plotOptions:{
line:{
linecap: 'square',
lineWidth:10,
marker:{
enabled:false
}
}
},