up vote 0 down vote favorite
share [g+] share [fb]

I had a short look at some popular plotting libraries but haven't found what I need until now.

Basically I'm looking for a library or tool that generates a graph as it is known from school. That means not an axis description at the outer left and one at the bottom, but two crossed axes, mostly positioned in the center of the graph. You can find an example here.

Maybe I didn't notice that gnuplot/octave/matplotlib or any others already have that feature. If so, I'd like to get a clue where to find the information.

link|improve this question

68% accept rate
What language? is this for the web? – mkoryak Apr 22 '09 at 18:43
Yes, I want to generate graphs on a web page. I'd like to do it in PHP, but I haven't found anything related to graph plotting for PHP. Python would be also okay, but the language doesn't really matter at all. – okoman Apr 22 '09 at 18:52
feedback

2 Answers

I'm sure this is not the perfect solution, but you can perhaps plot 4 hidden points:

pt1: (-100, 0)
pt2: ( 100, 0)
PT3: ( 0, -100)
pt4: ( 0, 100)

"100" would represent the extents of your graph. On another note, some graph libraries enable quadrant views, so you might have to set it up to view all 4 quadrants.

A short google search yielded this java script tool

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.