我正在尝试在此处实现解决方案:Highstock + Bootstrap datepicker但我最终在控制台中出现了未定义的错误。
jsFiddle:http://jsfiddle.net/rlsaj/r6es2jyc/。
setTimeout(function () {
$('input.highcharts-range-selector', $(chart.container).parent())
.datepicker({
format: "dd/mm/yyyy",
todayBtn: "linked",
orientation: "auto left",
autoclose: true,
todayHighlight: true
});
}, 0);
我的目标是实现Angular Bootstrap datepicker(http://angular-ui.github.io/bootstrap/),但我认为如果可以修复上述小提琴,我可以解决这个问题。