data = [[1062, 732, 1327754], [12335, 7693, 109313934], [290, 450, 1768064]];
how can I sort by the third value of each array object in my data, which leads to a decreasing sort value
[[12335, 7693, 109313934], [290, 450, 1768064], [1062, 732, 1327754]]
I am trying to use the d3 method: data.sort(d3.descending);
Tom
source share