2015-07-02 15 views
5

Ich benutze highchart alles funktioniert gut, außer für das Diagramm Druckknopf ist nicht klickbar, unten sind meine Highchart-Implementierung und Referenzbild. Irgendwelche Ideen, Hinweise, Vorschläge, Empfehlungen, Hilfe?highchart Druck Diagramm/Diagramm Kontextmenü nicht anklickbar

$('#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 

Ausgabe Referenzbild

enter image description here

Antwort

2

Stellen Sie einfach höher zIndex für diese Schaltfläche: http://jsfiddle.net/9P5fC/488/

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