I want to loop over a theme of highchart:
Highcharts.theme = {
    yAxis: {
        opposite: true,
        lineWidth: 0, // Linie ganz rechts      
    },
    navigation: {
        buttonOptions: {
            align: 'left'
        }
    },   
    rangeSelector: {
        selected: 1
    }
};
As result, I need pairs of key/values:
- yAxis.opposite / true
- yAxis.lineWidth / 0
- navigation.buttonOptions.align / left
- rangeSelector.selected / 1
Can anyone help in the best way to do this?
 
    