Same values are sent to xaxisTransform and dataTransform functions when series: 'columns' option is set
May 29, 2008 - 5:26pm — jocapc
It seems to me that here should be following line:
I have changed this in my copy of file and it seem that this has fixed a problem. Is that ok?
| Project: | graphTable: graph data from HTML table using flot |
| Version: | 0.1.0 |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed |
Jump to:
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
#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
#4
Automatically closed -- issue fixed for two weeks with no activity.