I've found some issue with selectors fields. They can't be changed after using jQuery hide() and show() methods on chart container. Is this a bug, or I've do something wrong?
Here is my example: http://jsfiddle.net/hal9000pro/jL3SX/
$(function(){
$('#stock-mails-diagram').hide().
highcharts('StockChart', {
rangeSelector : {
inputDateFormat:"%Y-%m-%d",
inputEditDateFormat:"%Y-%m-%d"
},
title : {
text : 'Emails sent per day'
},
series : [
{
name : 'mails sent',
type: 'area',
step: 'true',
data : mails
}],
plotOptions:{
area:{
dataLabels:{
enabled:false
}
}
}
});
$('#stock-mails-diagram').show();
});