in reply to How to add two array data into one GD plot?
You have four values all for the same moment of time. Here are two possible solutions. First, if you want them as two different pairs you should join them like this:
Second, if they are really for the same time, maybe they should be like this:@data = ( ["2010/03/29 14:00:00", "2010/03/29 14:00:00"], [13, 15], [20, 21], );
@data = (["2010/03/29 14:00:00"], [13], [15], [20], [21],);
|
|---|