高亮打印图表/图表上下文菜单无法点击

时间:2015-07-02 09:32:47

标签: javascript jquery css highcharts

我使用highchart一切正常,除了图表打印按钮不可点击,下面是我的高图实现和参考图像。任何想法,线索,建议,建议,帮助?

$('#chart_portfolio').highcharts({
                        chart: {
                        borderColor: '#ff0000',
                        width: null,
                        height: null
                        },
                        title: {
                            text: false,
                            x: -20 //center
                        },
                        xAxis: {
                            categories: portfolio_creation_date
                        },
                        yAxis: {
                            title: {
                                text: false
                            },
                            plotLines: [{
                                value: 0,
                                width: 1,
                                color: '#ff0000'
                            }]
                        },
                        tooltip: {
                                shared: true,
                                crosshairs: true
                            },  
                        series: [{
                            name: 'Future',
                            data: portfolio_future,
                            color: '#0f00ff'
                        }, {
                            name: 'In Grace Period',
                            data: portfolio_ingrace_period,
                            color: '#fda800'
                        }, {
                            name: 'Arrears',
                            data: portfolio_in_arrears,
                            color: '#f40404'
                        }, {
                            name: 'Good standing',
                            data: portfolio_good_standing,
                            color: '#4da74d'
                        }]
                    }); //end of highcharts 

发布参考图片

enter image description here

1 个答案:

答案 0 :(得分:3)

只需为该按钮设置更高的zIndexhttp://jsfiddle.net/9P5fC/488/

exporting: {
    buttons: {
        contextButton: {
            theme: {
                zIndex: 100   
            }
        }
    }
}