score:1

Accepted answer

that problem is a highcharts bug related with merging object and array and it is already reported here: https://github.com/highcharts/highcharts/issues/2022

as a workaround you can define the axes as arrays:

exporting: {
    chartoptions: {
        title: {
            text: 'new text'
        },
        xaxis: [{
            linecolor: '#000',
            labels: {
                style: {
                    color: '#000'
                }
            },
            title: {
                style: {
                    color: '#000'
                }
            }
        }],
        yaxis: [{
            gridlinecolor: '#000',
            linecolor: '#000',
            labels: {
                style: {
                    color: '#000'
                }
            },
            title: {
                style: {
                    color: '#000'
                }
            }
        }]
    }
}

live demo: http://jsfiddle.net/blacklabel/dqyr0fcu/


Related Query

More Query from same tag