Annotation 不应用label 高度和宽度配置,如何在highcharts 中应用shape borderRadius 配置

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

带有重现步骤的现场演示 https://jsfiddle.net/ankitkumar148/e8xrvc65/11/

配置-

annotations: [{
       shapes: [ {
           point: '3',
           type: 'rect',
           width: 20,
           height: 20,
           x: -10,
           y: -25
       }],
       labels: [ {
           point: '4',
             borderRadius: 2,
           borderWidth: 2,
           borderColor: 'red',
           style: {
               fontSize: '12px', 
               width: 20,
               height: 20
           },
          shape: 'rect',
          text: ' '
       }]
   }]

在上面的配置中,

  • 对于第 3 点 - 是否有任何配置可以将边界半径添加到形状中,就像我们对带有标签注释的第 4 点所做的那样?
  • 对于第 4 点 - 是否有任何配置可以为标签添加宽度和高度,就像我们对带有形状注释的第 3 点所做的那样?
highcharts
© www.soinside.com 2019 - 2024. All rights reserved.