This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"width": 500, | |
"height": 200, | |
"padding": "auto", | |
"data": [ | |
{ | |
"name": "table", | |
"values": [ | |
{"x": 0, "y": 28, "c":0}, {"x": 0, "y": 55, "c":1}, | |
{"x": 1, "y": 43, "c":0}, {"x": 1, "y": 91, "c":1}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
date | close | |
---|---|---|
2-May-12 | 65.07 | |
1-May-12 | null | |
30-Apr-12 | null | |
29-Apr-12 | 60.05 | |
28-Apr-12 | null | |
27-Apr-12 | 67.00 | |
26-Apr-12 | 89.70 | |
25-Apr-12 | 99.00 | |
24-Apr-12 | 130.28 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Create new XML Object | |
clothing_xml = new XML(); | |
clothing_xml.ignoreWhite = true; | |
// Setup load handler which just invokes another function | |
// which will do the parsing of our XML | |
clothing_xml.onLoad = function(sucess) { | |
if (sucess) { | |
processClothing(clothing_xml); | |
} | |
}; |