jquery - examples - gráficos flotantes: barras que seleccionan externamente
jquery flot grid (1)
Lo que está buscando es highlight
, que está documentado en API.txt :
highlight(series, datapoint) Highlight a specific datapoint in the data series. You can either specify the actual objects, e.g. if you got them from a "plotclick" event, or you can specify the indices, e.g. highlight(1, 3) to highlight the fourth point in the second series (remember, zero-based indexing).
Entonces su código se vería así:
//before this, $.plot has been called and assigned to "plot"
$(''#mylink'').mouseover(function(){
plot.highlight(1,3);
}).mouseout(function(){
plot.unhighlight(1,3);
});
Estoy utilizando flot http://code.google.com/p/flot/ y me gustaría destacar una barra en particular en la serie cuando el usuario pasa el mouse sobre un enlace, ¿alguien sabe cómo hacerlo?
Aclamaciones,
Tim