1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
var myChart;
function get_ajax_data(product_id) {
$.ajax({
type: 'GET',
url: 'get_list_sale_breaking/' + product_id,
dataType:"json",
timeout: 3000,
beforeSend: function () { },
complete: function () { },
success: function(data) {
myChart.data = data['data'];
myChart.update();
},
error: function() {
alert('Les données n\'ont pas pu être récupérées, réessayez plus tard.');
}
});
}
var config = {
type: 'bar',
data: {},
options: {
title: {
display: true,
text: 'Graph. des ventes'
},
legend: { display: false }
}
};
window.onload = function() {
myChart = new Chart(document.getElementById("mixed-chart"), config);
};
$(function() {
$('.modal').on('show.bs.modal', function (e) {
var button = $(e.relatedTarget);
var index = button.data('remote');
//$(this).find('.modal-content').load('remote' + index + '.html')
get_ajax_data(index);
});
});