高价股 如何改变范围选择器按钮的字体?

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

我建了一个高图,想改变按钮的字体。请看 抚弄

buttonTheme: {
              fill: '#0065b3',
              padding: 10,
              width: 60,
              r: '5',
              style: {
                    fontFamily: 'Poppins'
                     },
              states: {
                    hover: {
                          style: {
                              fontFamily: 'Poppins',
                              fontWeight: 'bold'
                                }                           
                          },
                    select: {
                          style: {
                              fontFamily: 'Poppins'
                                  }
                             }
                      }
                      },

所选按钮的字体是正确的,但其他按钮的字体不正确。将鼠标悬停在它们上面后,它们得到了正确的字体,并保留了它。当你重新加载图形时,字体又丢失了。我该怎么做呢?

highcharts
1个回答
0
投票

尝试使用CSS属性来设置它作为变通方法。

.highcharts-range-selector-buttons {
    font-family: Poppins !important;
}

演示一下: https:/jsfiddle.netBlackLabelqfp1erjv

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