Skip to content

Commit 4098609

Browse files
authored
fix: links in docs (#9450)
## PR Description Fixes these links on https://vega.github.io/vega-lite/docs/: > This documentation describes the [JSON specification language](https://vega.github.io/vega-lite/docs/#spec) > ... > - [Point Selection Properties](https://vega.github.io/vega-lite/docs/selection.html#point) > - [Interval Selection Properties](https://vega.github.io/vega-lite/docs/selection.html#interval)
1 parent d3ec513 commit 4098609

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

site/docs/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ permalink: /docs/
77

88
**Vega-Lite** is a high-level grammar for interactive graphics. It provides a concise JSON syntax for supporting rapid generation of interactive multi-view visualizations to support analysis. Vega-Lite can serve as a declarative format for describing and creating data visualizations. To use Vega-Lite, our compiler compiles a Vega-Lite specification into a lower-level, more detailed [Vega](https://vega.github.io/vega) specifications and rendered using Vega's compiler.
99

10-
This documentation describes the [JSON specification language](#spec) and how to [use Vega-Lite visualizations]({{site.baseurl}}/usage/embed.html) in a web application.
10+
This documentation describes the [JSON specification language](spec.html) and how to [use Vega-Lite visualizations]({{site.baseurl}}/usage/embed.html) in a web application.
1111

1212
<form action="https://google.com/search" method="get" class="search">
1313
<input type="hidden" name="q" value="site:https://vega.github.io/vega-lite/docs/">

site/docs/parameter/select.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ A [selection's type](parameter.html#select) determines which data values fall wi
5656

5757
### Selection Projection with `encodings` and `fields`
5858

59-
In the scatterplot example below, highlight <select name="point" onchange="buildProjection('point')"><option value="multi">multiple</option><option value="single">a single</option></select>: <label onclick="buildProjection('point')"><input type="checkbox" name="point" value="cylinders" />Cylinder(s)</label> <label onclick="buildProjection('point')"><input type="checkbox" name="point" value="origin" />Origin(s)</label>.
59+
In the scatterplot example below, highlight <select name="point_vis" onchange="buildProjection('point_vis')"><option value="multi">multiple</option><option value="single">a single</option></select>: <label onclick="buildProjection('point_vis')"><input type="checkbox" name="point_vis" value="cylinders" />Cylinder(s)</label> <label onclick="buildProjection('point_vis')"><input type="checkbox" name="point_vis" value="origin" />Origin(s)</label>.
6060

61-
<div id="point" class="vl-example" data-name="selection_project_multi"></div>
61+
<div id="point_vis" class="vl-example" data-name="selection_project_multi"></div>
6262

63-
With interval selections, we can use the projection to restrict the region to just the <label onclick="buildProjection('interval')"><input type="checkbox" name="interval" value="x" />horizontal (`x`)</label> and/or <label onclick="buildProjection('interval')"><input type="checkbox" name="interval" value="y" />vertical (`y`)</label> dimensions.
63+
With interval selections, we can use the projection to restrict the region to just the <label onclick="buildProjection('interval_vis')"><input type="checkbox" name="interval_vis" value="x" />horizontal (`x`)</label> and/or <label onclick="buildProjection('interval_vis')"><input type="checkbox" name="interval_vis" value="y" />vertical (`y`)</label> dimensions.
6464

65-
<div id="interval" class="vl-example" data-name="selection_project_interval"></div>
65+
<div id="interval_vis" class="vl-example" data-name="selection_project_interval"></div>
6666

6767
#### Current Limitations
6868

0 commit comments

Comments
 (0)