I posting my question because I couldn't find info anywhere, most tutorials require the use of fancy libraries and I just wan't to draw a html5 canvas scatter plot from two json multidimensional arrays containing the following data example:
{ 'dataset1' [ { "p0" : "0.69", "log(p0)" : "14", "p0_name" : "cn95" }, ]
and for the other axis
{ "p1" : "0.69", "log(p1)" : "14", "p1_name" : "dn95" },
the example I'm trying to recreate is something like this.
The biggest problem I have is getting the canvas use logarithmic scales. You can see from the example link that that is required to see something from the data. A fiddle would be great to play with and create my own! This is what I have so far:
http://jsfiddle.net/3L4humdv/ and this is the data im using link
Canvas cannot use logarithmic scale out of the box, you'll have to provide a function for your points to scale them yourselves.
I would suggest following procedure:
Use the same function for drawing the graph container as well as the points/lines etc.
As an example, with a "pseudo" (as in no particular purpose) log function:
The same applies to the x value. Just replace the log function here with one appropriate for your purpose.
Hope this helps!