+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/scales/scale.linear.js b/src/scales/scale.linear.js
index 21a6e4322..ceeae97c1 100644
--- a/src/scales/scale.linear.js
+++ b/src/scales/scale.linear.js
@@ -61,7 +61,7 @@
// we get the final line
for (var i = 0; i <= this.options.override.steps; ++i) {
var value = this.options.override.start + (i * this.options.override.stepWidth);
- ticks.push(value);
+ this.ticks.push(value);
}
} else {
// Figure out what the max number of ticks we can support it is based on the size of
diff --git a/src/scales/scale.radialLinear.js b/src/scales/scale.radialLinear.js
index 0a1a26b45..0e9c763b3 100644
--- a/src/scales/scale.radialLinear.js
+++ b/src/scales/scale.radialLinear.js
@@ -129,7 +129,7 @@
// we get the final line
for (var i = 0; i <= this.options.override.steps; ++i) {
var value = this.options.override.start + (i * this.options.override.stepWidth);
- ticks.push(value);
+ this.ticks.push(value);
}
} else {
// Figure out what the max number of ticks we can support it is based on the size of