Reputation: 391
I am using Highcharts 4.2.5. The Range Selector is partially displayed. The from & to date boxes are not displayed, but sometimes if i enlarge the page , i see the date fields, but the date field is readonly. One more observation, i see the date field if the chart width is big. But with multiple line charts the date does not come.
Below is my options
{
"tooltip" : {
"useHTML": "true",
"headerFormat" : "{point.key}<br>"
},
"credits" : {
"enabled" : true
},
"navigator" :{
"enabled": true
},
"scrollbar" :{
"enabled": true
},
"rangeSelector" : {
"allButtonsEnabled" : true
},
"legend" : {
"enabled" : true
},
"title" : {
"text" : ""
},
"series" : []
}
Upvotes: 2
Views: 3004
Reputation: 12472
Input shows when the chart has enough space, otherwise the input hides. If you want to force input to be always enabled, you need to set it in options.
rangeSelector: {
enabled: true,
inputEnabled: true
},
Example: http://jsfiddle.net/bnmb05eu/
Upvotes: 2