Skip to content

Commit ca565a5

Browse files
committed
default overflow: visible
1 parent bb68c88 commit ca565a5

File tree

7 files changed

+0
-7
lines changed

7 files changed

+0
-7
lines changed

docs/features/projections.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ A **projection** maps abstract coordinates in *x* and *y* to pixel positions on
4545
Plot.plot({
4646
projection: {type: "orthographic", rotate: [-longitude, -30]},
4747
r: {transform: (d) => Math.pow(10, d)}, // convert Richter to amplitude
48-
style: "overflow: visible;", // allow dots to escape
4948
marks: [
5049
Plot.geo(land, {fill: "currentColor", fillOpacity: 0.2}),
5150
Plot.sphere(),

docs/marks/density.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ The density mark supports Plot’s [projection system](../features/projections.m
112112
Plot.plot({
113113
projection: "albers",
114114
color: {scheme: "{{$dark ? "turbo" : "YlGnBu"}}"},
115-
style: "overflow: visible;",
116115
marks: [
117116
Plot.density(walmarts, {x: "longitude", y: "latitude", bandwidth: 10, fill: "density"}),
118117
Plot.geo(statemesh, {strokeOpacity: 0.3}),

docs/marks/geo.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ The size of Point and MultiPoint geometries is controlled by the **r** option. F
6363
```js
6464
Plot.plot({
6565
projection: "equirectangular",
66-
style: "overflow: visible;",
6766
r: {transform: (r) => Math.pow(10, r)}, // Richter to amplitude
6867
marks: [
6968
Plot.geo(land, {fill: "currentColor", fillOpacity: 0.2}),

docs/marks/line.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,6 @@ If a **stroke** (or **fill**) channel is specified, the **z** option defaults to
146146
:::plot defer https://observablehq.com/@observablehq/plot-index-chart
147147
```js
148148
Plot.plot({
149-
style: "overflow: visible;",
150149
y: {
151150
type: "log",
152151
grid: true,

docs/marks/vector.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ Plot.plot({
9696
width: 688,
9797
projection: "albers-usa",
9898
length: {range: [0, 200]},
99-
style: "overflow: visible;", // allow spikes to escape
10099
marks: [
101100
Plot.geo(statemesh, {strokeOpacity: 0.5}),
102101
Plot.geo(nation),

docs/transforms/normalize.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ The **normalize transform** is a specialized [map transform](./map.md) that norm
3232
:::plot defer https://observablehq.com/@observablehq/plot-index-chart
3333
```js
3434
Plot.plot({
35-
style: "overflow: visible;",
3635
y: {
3736
type: "log",
3837
grid: true,

docs/transforms/select.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ The select transform groups data into series using the **z**, **fill**, or **str
5959
:::plot defer https://observablehq.com/@observablehq/plot-labeled-multi-line-chart
6060
```js
6161
Plot.plot({
62-
style: "overflow: visible;",
6362
y: {grid: true},
6463
marks: [
6564
Plot.ruleY([0]),

0 commit comments

Comments
 (0)