After setting the title of my chart to null, I noticed that I am no longer able to access the download menu on the chart.
Check out this example for reference: http://jsfiddle.net/JVNjs/954/
var chart = new Highcharts.Chart({
chart: {
renderTo:'container',
borderWidth:1,
plotBorderWidth:1
},
title:{
text:null
},
subTitle:{
text:null
},
credits:{enabled:false},
legend:{
},
plotOptions: {
series: {
shadow:false,
borderWidth:0,
}
},
xAxis:{
lineColor:'#999',
lineWidth:1,
tickColor:'#666',
tickLength:3,
title:{
text:'X Axis Title'
}
},
yAxis:{
lineColor:'#999',
lineWidth:1,
tickColor:'#666',
tickWidth:1,
tickLength:3,
gridLineColor:'#ddd',
title:{
text:'Y Axis Title',
rotation:0,
margin:50,
}
},
series: [{
data: [7,12,16,32,60]
}]
Has anyone encountered a similar issue before?