图表,按钮文字未定义

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

我有trawled through the API,找不到在哪里定义自定义导航按钮的替代文本。

任何人都可以帮忙吗?

<< img src =“ https://image.soinside.com/eyJ1cmwiOiAiaHR0cHM6Ly9pLnN0YWNrLmltZ3VyLmNvbS9ZekpBWS5wbmcifQ==” alt =“未定义的替代文本”>

这里是我的导出选项示例:

exporting: {
    buttons: {
        contextButtons: {
            enabled: false,
            menuItems: null
        },
        contextButton: {
            menuItems: null,
            symbol: 'url()',
            symbolX: 1,
            symbolY: 1,
            width: 1,
            height:1,
            onclick: function() {
                return false;
            }
        },
        'downButton': {
            symbol: 'url(img/glyphicons/glyphicons_200_download.png)',
            symbolX: 13,
            symbolY: 13,
            width: 26,
            height:26,
            onclick: function() {
                this.exportChart();
            }
        }
    },
    type: 'image/png'
},
javascript highcharts
2个回答
3
投票

_titleKey是您想要的。有关示例,请参见http://jsfiddle.net/x36qR/1/


0
投票

请确保您定义了lang:{}图表对象中的参数

然后使用lang中的_titleKey:“ example”设置所需的标题

  .highcharts({

        lang:{
            example: "Title Name"
        },
© www.soinside.com 2019 - 2024. All rights reserved.