hi
i'm sure it's the way i'm adding the array, both bold lines below should highlight the issue,
i have to call the data like [][].myvalue, is there a way i can add data to 'default_data' and only use [].myvalue ??
I'm sure I'm double nesting...
please help!
var default_data = {}
func add_set_of_data(n, mydate, myvalue):
var new_data = {
n: {"mydate": mydate, "myvalue": myvalue}
}
**default_data[n] = new_data**
for n in range(default_data.size()):
**print(default_data[n][n].myvalue)**
thanks