简体   繁体   中英

HIghcharts, button text undefined

I've trawled through the API and can't find where to define the alt text of custom nav buttons.

Can anyone help out?

未定义的替代文字

Here's a sample of what I've got in my exporting options:

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'
},

_titleKey is what you want. See http://jsfiddle.net/x36qR/1/ for an example.

make sure you define lang: { } parameter in the chart object

then use the _titleKey: "example" in the lang to set the desired title

  .highcharts({

        lang:{
            example: "Title Name"
        },

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM