我想为高图表绘图线标签应用自定义样式

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

我想应用自定义样式highchart图线标签。我正在使用borderRadiusRight选项,但不适用。以下是我的代码。请检查。

Highcharts.chart('chart', {
  //...
  xAxis: {
    plotLines: [{
      color: 'red',
      width: 2,
      value: sbar,
      dashStyle: 'solid',
      label: {
        y: -6,
        x: 25,
        useHTML: true,
        text: 'Start date',
        textAlign: 'center',
        rotation: 0,
        style: {
          backgroundColor: 'red',
          color: 'white',
          padding: '2px',
          fontWeight: 'bold',
          borderRadiusRight: '10px'
        }
      },
    }]

  }
  //...
});
jquery highcharts
1个回答
0
投票

css / highcharts中没有样式borderRadiusRight。您必须为此使用borderRadius属性。

尝试使用borderRadius: 0 10px 10px 0

这里第一个值适用于左上角,第二个值适用于右上角,第三个值适用于右下角,第四个值适用于左下角。

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