Skip to content

Commit 2a1db9d

Browse files
committed
Utilize Line in Filler
1 parent 6d8bde4 commit 2a1db9d

13 files changed

+720
-416
lines changed

src/controllers/controller.radar.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,14 +133,16 @@ module.exports = DatasetController.extend({
133133
const options = me._resolveDataElementOptions(i);
134134
const x = reset ? scale.xCenter : pointPosition.x;
135135
const y = reset ? scale.yCenter : pointPosition.y;
136+
const r = pointPosition.r;
136137

137138
// Utility
138139
point._options = options;
139140

140141
// Desired view properties
141142
point._model = {
142-
x: x, // value not used in dataset scale, but we want a consistent API between scales
143-
y: y,
143+
x,
144+
y,
145+
r,
144146
skip: isNaN(x) || isNaN(y),
145147
// Appearance
146148
radius: options.radius,

0 commit comments

Comments
 (0)