Skip to content

Commit b45d30e

Browse files
authored
Merge pull request #72 from plotly/fix-links
Fix broken links
2 parents 2328903 + 266142b commit b45d30e

File tree

7 files changed

+9
-8
lines changed

7 files changed

+9
-8
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
julia-version:
19-
- "1.6"
19+
- "1.7"
2020
julia-arch: [x64]
2121
os: [ubuntu-latest]
2222

Manifest.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ version = "1.8.0"
198198
deps = ["BinaryProvider", "HTTP", "Libdl", "Reexport", "SHA", "p7zip_jll"]
199199
git-tree-sha1 = "4f0e41ff461d42cfc62ff0de4f1cd44c6e6b3771"
200200
uuid = "124859b0-ceae-595e-8997-d05f6a7a8dfe"
201-
version = "0.7.7"
201+
version = "0.7.13"
202202

203203
[[DataFrames]]
204204
deps = ["Compat", "DataAPI", "Future", "InvertedIndices", "IteratorInterfaceExtensions", "LinearAlgebra", "Markdown", "Missings", "PooledArrays", "PrettyTables", "Printf", "REPL", "Reexport", "SortingAlgorithms", "Statistics", "TableTraits", "Tables", "Unicode"]

dash/Manifest.toml

+1
Original file line numberDiff line numberDiff line change
@@ -520,3 +520,4 @@ uuid = "8e850ede-7688-5339-a07c-302acd2aaf8d"
520520
[[p7zip_jll]]
521521
deps = ["Artifacts", "Libdl"]
522522
uuid = "3f19e933-33d8-53b3-aaab-bd5110c3b7a0"
523+
version = "17.4.0"

julia/axes.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Other kinds of subplots and axes are described in other tutorials:
4040
The different types of Cartesian axes are configured via the `xaxis.type` or `yaxis.type` attribute, which can take on the following values:
4141

4242
- `'linear'` as described in this page
43-
- `'log'`
43+
- `'log'`
4444
- `'date'` (see the [tutorial on timeseries](/julia/time-series/))
4545
- `'category'`
4646
- `'multicategory'`
@@ -75,7 +75,7 @@ The different groups of Cartesian axes properties are
7575
- range of the axis
7676
- domain of the axis
7777

78-
The examples on this page apply to axes of any type, but extra attributes are available for [axes of type `category`](/juliae/categorical-axes/) and [axes of type `date`](/julia/time-series/).
78+
The examples on this page apply to axes of any type, but extra attributes are available for [axes of type `category`](/julia/axes/) and [axes of type `date`](/julia/time-series/).
7979

8080
#### Set and Style Axes Title Labels
8181

julia/line-charts.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ plot([trace1 ,trace2, trace3, trace4, trace5, trace6], layout)
169169

170170
#### Connect Data Gaps
171171

172-
[connectgaps](https://plotly.com/julia/reference/scatter/#scatter-connectgaps) determines if missing values in the provided data are shown as a gap in the graph or not. In [this tutorial](https://plotly.com/julia/filled-area-on-mapbox/#multiple-filled-areas-with-a-scattermapbox-trace), we showed how to take benefit of this feature and illustrate multiple areas in mapbox.
172+
[connectgaps](https://plotly.com/julia/reference/scatter/#scatter-connectgaps) determines if missing values in the provided data are shown as a gap in the graph or not.
173173

174174
```julia
175175
using PlotlyJS

julia/sankey-diagram.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,4 +182,4 @@ plot(sankey(
182182

183183
### Reference
184184

185-
See [https://plotly.com/julia/reference/sankey](https://plotly.com/jluia/reference/sankey/) for more information and options!
185+
See [https://plotly.com/julia/reference/sankey](https://plotly.com/julia/reference/sankey/) for more information and options!

julia/text-and-annotations.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ plot([trace1, trace2, trace3])
106106

107107
### Controlling text fontsize with uniformtext
108108

109-
For the [pie](/julia/pie-charts), [bar](/julia/bar-charts), [sunburst] and [treemap] traces, it is possible to force all the text labels to have the same size thanks to the `uniformtext` layout parameter. The `minsize` attribute sets the font size, and the `mode` attribute sets what happens for labels which cannot fit with the desired fontsize: either `hide` them or `show` them with overflow.
109+
For the pie, [bar](/julia/bar-charts), sunburst, and treemap traces, it is possible to force all the text labels to have the same size thanks to the `uniformtext` layout parameter. The `minsize` attribute sets the font size, and the `mode` attribute sets what happens for labels which cannot fit with the desired fontsize: either `hide` them or `show` them with overflow.
110110

111111
```julia
112112
using PlotlyJS, CSV, DataFrames
@@ -148,7 +148,7 @@ plot(trace, layout)
148148

149149
### Controlling text fontsize with textfont
150150

151-
The `textfont_size` parameter of the the [pie](/julia/pie-charts), [bar](/julia/bar-charts), [sunburst] and [treemap] traces can be used to set the **maximum font size** used in the chart. Note that the `textfont` parameter sets the `insidetextfont` and `outsidetextfont` parameter, which can also be set independently.
151+
The `textfont_size` parameter of the pie, [bar](/julia/bar-charts), sunburst, and treemap traces can be used to set the **maximum font size** used in the chart. Note that the `textfont` parameter sets the `insidetextfont` and `outsidetextfont` parameter, which can also be set independently.
152152

153153
```julia
154154
using PlotlyJS, CSV, DataFrames

0 commit comments

Comments
 (0)