We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6865e9 commit b0434aaCopy full SHA for b0434aa
src/marks/area.js
@@ -46,7 +46,7 @@ export class Area extends Mark {
46
render(index, scales, channels, dimensions, context) {
47
const {x1: X1, y1: Y1, x2: X2 = X1, y2: Y2 = Y1} = channels;
48
return create("svg:g", context)
49
- .call(applyIndirectStyles, this, scales, dimensions, context)
+ .call(applyIndirectStyles, this, dimensions, context)
50
.call(applyTransform, this, scales, 0, 0)
51
.call((g) =>
52
g
src/marks/arrow.js
@@ -66,7 +66,7 @@ export class Arrow extends Mark {
66
const wingScale = headLength / 1.5;
67
68
69
70
.call(applyTransform, this, scales)
71
72
src/marks/bar.js
@@ -28,7 +28,7 @@ export class AbstractBar extends Mark {
28
29
const {rx, ry} = this;
30
31
32
.call(this._transform, this, scales)
33
34
src/marks/delaunay.js
@@ -124,7 +124,7 @@ class DelaunayLink extends Mark {
124
}
125
126
127
128
.call(applyTransform, this, {x: X && x, y: Y && y})
129
.call(
130
Z
@@ -174,7 +174,7 @@ class AbstractDelaunayMark extends Mark {
174
175
176
177
178
179
180
@@ -245,7 +245,7 @@ class Voronoi extends Mark {
245
246
247
248
249
250
251
src/marks/density.js
@@ -50,7 +50,7 @@ export class Density extends Mark {
const {contours} = channels;
const path = geoPath();
53
54
.call(applyTransform, this, {})
55
56
src/marks/dot.js
@@ -73,7 +73,7 @@ export class Dot extends Mark {
73
const size = R ? undefined : r * r * Math.PI;
74
if (negative(r)) index = [];
75
76
77
78
79
src/marks/frame.js
@@ -24,7 +24,7 @@ export class Frame extends Mark {
24
const {marginTop, marginRight, marginBottom, marginLeft, width, height} = dimensions;
25
const {insetTop, insetRight, insetBottom, insetLeft, rx, ry} = this;
26
return create("svg:rect", context)
27
.call(applyDirectStyles, this)
.attr("x", marginLeft + insetLeft)
src/marks/geo.js
@@ -37,7 +37,7 @@ export class Geo extends Mark {
37
38
else if (r !== undefined) path.pointRadius(r);
39
40
41
42
.call((g) => {
43
g.selectAll()
src/marks/hexgrid.js
@@ -46,7 +46,7 @@ export class Hexgrid extends Mark {
.call(applyTransform, this, {}, offset + ox, offset + oy)
.call((g) => g.append("path").call(applyDirectStyles, this).attr("d", d))
.node();
src/marks/image.js
@@ -70,7 +70,7 @@ export class Image extends Mark {
const {x: X, y: Y, width: W, height: H, src: S} = channels;
const [cx, cy] = applyFrameAnchor(this, dimensions);
0 commit comments