Plugins

User login
Can't find a Plugin?

Can't find a Plugin you are looking for? Check out the jQuery Wiki page.

Are you a plugin developer? Please move your plugin over to this site.

Website Bug or Feature Request?

Found a bug on the new jQuery Plugin website? Have a feature request?

Submit it to the jQuery Plugin website issue queue to ensure it is noticed!

Same values are sent to xaxisTransform and dataTransform functions when series: 'columns' option is set


Project:graphTable: graph data from HTML table using flot
Version:0.1.0
Component:Code
Category:bug report
Priority:normal
Assigned:Unassigned
Status:closed
Description

I had a problem because xaxisTransform and dataTransform callback functions have been called with identical values when I use series: 'columns' option.
I have seen that in line 163 in http://plugins.jquery.com/files/jquery.graphTable-0.1.js.txt is placed following statement:

if (args.xaxisTransform) { x = args.xaxisTransform(y); }

It seems to me that here should be following line:
if (args.xaxisTransform) { x = args.xaxisTransform(x); }

I have changed this in my copy of file and it seem that this has fixed a problem. Is that ok?

Comments

#1

Priority:critical» normal

#2

You're correct, and I fixed this some time ago but I didn't know you'd logged this issue here. Thanks for pointing it out!

#3

Status:active» fixed

#4

Status:fixed» closed

Automatically closed -- issue fixed for two weeks with no activity.