전 jquerymaster가 아니므로 조금 도와 줄 수 있기를 바랍니다. datepicker에서 전달 된 값을 기반으로 업데이트하는 차트를 표시하려고합니다.Morris.js 및 datepicker 동적 차트
var now3 = new Date();
now3.addDays(-4);
var now4 = new Date()
$('#widgetCalendar').DatePicker({
flat: true,
format: 'd-m-Y',
date: [new Date(now3), new Date(now4)],
calendars: 3,
mode: 'range',
starts: 1,
onChange: function(formated) {
$('#widgetField span').get(0).innerHTML = formated.join(' ÷ ');
$('#test').get(0).innerHTML = 'http://localhost:8888/indkrydsning/app/house/stats_json/' + formated.join('/');
}
});
var state = false;
$('#widgetField>a').bind('click', function(){
$('#widgetCalendar').stop().animate({height: state ? 0 : $('#widgetCalendar div.datepicker').get(0).offsetHeight}, 500);
state = !state;
return false;
});
$('#widgetCalendar div.datepicker').css();
그리고 내 차트는 다음과 같습니다 :
내 날짜 선택기 기능은 다음과 같습니다 나는 내가 날짜 선택기 함수에 onchange를 기능을 기반으로 새 JSON 파일을로드 할 수 있습니다 알고
var json = (function() {
var json = null;
$.ajax({
'async': false,
'global': false,
'url': 'http://localhost:8888/indkrydsning/app/house/stats_json/',
'dataType': "json",
'success': function (data) {
json = data;
}
});
return json;
})();
new Morris.Line({
// ID of the element in which to draw the chart.
element: 'myfirstchart',
// Chart data records -- each entry in this array corresponds to a point on
// the chart.
data: json,
// The name of the data record attribute that contains x-values.
xkey: 'date',
// A list of names of data record attributes that contain y-values.
ykeys: ['value'],
// Labels for the ykeys -- will be displayed when you hover over the
// chart.
labels: ['Antal']
});
새로운 차트를 추가 할 수 없도록 이전 차트를 대체하려고합니다.
제 질문은 분명하고 이해할 수 있기를 바랍니다.
예를 들어 주셔서 감사합니다. 내 툴팁 레이블이 이전 레이블과 겹칠 때 문제가 발생했습니다. html을 지우면 문제가 해결되었습니다. 다시 한번 감사드립니다. – sg552
@ sg552 여러분을 환영합니다. =) – randytan