AJAX response inside jqplot not working
- by JuanGesino
I'm trying to render data from an AJAX response as a bar chart with jqplot. To render this bar chart I use two variables:
s1 which contains the numbers ex: s1 = [22,67,32,89]
ticks which contains the name corresponding to a number inside s1 ex: ticks = ["Jack", "Mary", "Paul", "John"]
So my AJAX returns two variables, data1 and data2.
When I…