var googleColor1 = 0x8cffaf;
var googleColor2 = 0x02ae36;

Highcharts.setOptions({
   colors: ["#fff100", "#5986ab", "#67b761", "#6198b7"],
   chart: {
      borderWidth: 0,
      borderRadius: 15,
      plotBackgroundColor: null,
      style: {
          cursor: 'crosshair'
      },
      plotShadow: false,
      plotBorderWidth: 0,
      zoomType: 'x',
      defaultSeriesType: 'column'
   },
   lang: {
      resetZoom: 'Zoom zurücksetzen',
      downloadPNG: 'PNG',
      downloadJPEG: 'JPEG',
      downloadPDF: 'PDF',
      downloadSVG: 'SVG',
      exportButtonTitle: 'Diagramm exportieren',
      printButtonTitle: 'Diagramm drucken',
      zoomButtonTitle: 'Zoom',
      zoomButtonBack: 'Zoom zurücksetzen',
      zoomButtonRight: 'nach rechts',
      zoomButtonLeft: 'nach links',
      zoomButtonPlus: 'vergrößern',
      zoomButtonMinus: 'verkleinern',
      decimalPoint: ','
   },
   subtitle: {
      text: ''
   },
   xAxis: {
        categories: [],
        labels: {
            rotation: -90,
            align: 'right',
            x: 5
        },
        title: {
            text: '',
            margin: 60
        }
        //startOnTick: true,
        //endOnTick: true
   },
   yAxis: {
      alternateGridColor: null,
      minorTickInterval: null,
      lineWidth: 1,
      tickWidth: 1
   },
   labels: {
      style: {
         color: '#ffffff'
      }
   },
   plotOptions: {
      column: {
            borderWidth: 0,
            groupPadding: 0.1,
            lineWidth: 0,
            shadow: false
      },
      series: {
          animation: true,
          markers: {
              enabled: false
          }
      }
   },
   legend: {
       enabled: false
   },
   toolbar: {
      itemStyle: {
         color: '#CCC'
      }
   }
});
