J'ai une fonction changeGraph() à l'intérieur du wrapper jQuery que je dois appeler d'une manière ou d'une autre depuis l'extérieur. J'ai besoin d'accéder à la fonction setData de la bibliothèque graphique basée sur jQuery, Flot.
La source ressemble à ceci:
function changeGraph(){
// J'ai besoin d'accéder à $.plot.setData d'une manière ou d'une autre
};
var d2 = [[0, 0], [20, 300000]];
$(function () {
$.plot($("#placeholder"),
[{color: "#000000", data: d2}],
{
series: {
lines: { show: true, fill:true, fillColor: {colors: [ "#d1ddea","#8e959d"]}},
points: { show: false }
}
}
);
});
Comment puis-je réaliser cela?