Skip to content

Commit dd74dec

Browse files
committed
fix links
1 parent c913e08 commit dd74dec

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

julia/axes.md

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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/text-and-annotations.md

Lines changed: 2 additions & 2 deletions
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)