Skip to content

Commit

Permalink
Update plottable.js, plottable.d.ts, and other build artefacts
Browse files Browse the repository at this point in the history
  • Loading branch information
teamdandelion committed Apr 16, 2014
1 parent 2c1d6a1 commit bed8121
Show file tree
Hide file tree
Showing 4 changed files with 1,766 additions and 1,206 deletions.
12 changes: 3 additions & 9 deletions examples/exampleUtil.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function makeRandomData(numPoints, scaleFactor) {
data.sort(function (a, b) {
return a.x - b.x;
});
return { data: data, metadata: { cssClass: "random-data" } };
return data;
}

function makeNormallyDistributedData(n, xMean, xStdDev, yMean, yStdDev) {
Expand Down Expand Up @@ -85,10 +85,7 @@ function makeRandomBucketData(numBuckets, bucketWidth, maxValue) {
y: Math.round(Math.random() * maxValue)
});
}
return {
"data": data,
metadata: { cssClass: "random-buckets" }
};
return data;
}

function generateHeightWeightData(n) {
Expand All @@ -104,8 +101,5 @@ function generateHeightWeightData(n) {
});
}

return {
data: data,
metadata: { cssClass: "height-weight-data" }
};
return data;
}
Loading

0 comments on commit bed8121

Please sign in to comment.