Skip to content

Fix broken links #72

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
May 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
julia-version:
- "1.6"
- "1.7"
julia-arch: [x64]
os: [ubuntu-latest]

Expand Down
2 changes: 1 addition & 1 deletion Manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ version = "1.8.0"
deps = ["BinaryProvider", "HTTP", "Libdl", "Reexport", "SHA", "p7zip_jll"]
git-tree-sha1 = "4f0e41ff461d42cfc62ff0de4f1cd44c6e6b3771"
uuid = "124859b0-ceae-595e-8997-d05f6a7a8dfe"
version = "0.7.7"
version = "0.7.13"

[[DataFrames]]
deps = ["Compat", "DataAPI", "Future", "InvertedIndices", "IteratorInterfaceExtensions", "LinearAlgebra", "Markdown", "Missings", "PooledArrays", "PrettyTables", "Printf", "REPL", "Reexport", "SortingAlgorithms", "Statistics", "TableTraits", "Tables", "Unicode"]
Expand Down
1 change: 1 addition & 0 deletions dash/Manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -520,3 +520,4 @@ uuid = "8e850ede-7688-5339-a07c-302acd2aaf8d"
[[p7zip_jll]]
deps = ["Artifacts", "Libdl"]
uuid = "3f19e933-33d8-53b3-aaab-bd5110c3b7a0"
version = "17.4.0"
4 changes: 2 additions & 2 deletions julia/axes.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Other kinds of subplots and axes are described in other tutorials:
The different types of Cartesian axes are configured via the `xaxis.type` or `yaxis.type` attribute, which can take on the following values:

- `'linear'` as described in this page
- `'log'`
- `'log'`
- `'date'` (see the [tutorial on timeseries](/julia/time-series/))
- `'category'`
- `'multicategory'`
Expand Down Expand Up @@ -75,7 +75,7 @@ The different groups of Cartesian axes properties are
- range of the axis
- domain of the axis

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/).
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/).

#### Set and Style Axes Title Labels

Expand Down
2 changes: 1 addition & 1 deletion julia/line-charts.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ plot([trace1 ,trace2, trace3, trace4, trace5, trace6], layout)

#### Connect Data Gaps

[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.
[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.

```julia
using PlotlyJS
Expand Down
2 changes: 1 addition & 1 deletion julia/sankey-diagram.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,4 +182,4 @@ plot(sankey(

### Reference

See [https://plotly.com/julia/reference/sankey](https://plotly.com/jluia/reference/sankey/) for more information and options!
See [https://plotly.com/julia/reference/sankey](https://plotly.com/julia/reference/sankey/) for more information and options!
4 changes: 2 additions & 2 deletions julia/text-and-annotations.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ plot([trace1, trace2, trace3])

### Controlling text fontsize with uniformtext

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.
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.

```julia
using PlotlyJS, CSV, DataFrames
Expand Down Expand Up @@ -148,7 +148,7 @@ plot(trace, layout)

### Controlling text fontsize with textfont

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.
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.

```julia
using PlotlyJS, CSV, DataFrames
Expand Down
Loading