diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d544fc..88a62d6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: julia-version: - - "1.6" + - "1.7" julia-arch: [x64] os: [ubuntu-latest] diff --git a/Manifest.toml b/Manifest.toml index b11edb7..3cafd55 100644 --- a/Manifest.toml +++ b/Manifest.toml @@ -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"] diff --git a/dash/Manifest.toml b/dash/Manifest.toml index 7cceb42..6e609dd 100644 --- a/dash/Manifest.toml +++ b/dash/Manifest.toml @@ -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" diff --git a/julia/axes.md b/julia/axes.md index e5dc0ea..024ffef 100644 --- a/julia/axes.md +++ b/julia/axes.md @@ -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'` @@ -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 diff --git a/julia/line-charts.md b/julia/line-charts.md index 36db12c..70eaee3 100644 --- a/julia/line-charts.md +++ b/julia/line-charts.md @@ -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 diff --git a/julia/sankey-diagram.md b/julia/sankey-diagram.md index 60a4ee3..05b11b6 100644 --- a/julia/sankey-diagram.md +++ b/julia/sankey-diagram.md @@ -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! diff --git a/julia/text-and-annotations.md b/julia/text-and-annotations.md index dd1ede1..c01b791 100644 --- a/julia/text-and-annotations.md +++ b/julia/text-and-annotations.md @@ -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 @@ -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