Skip to content

Commit ff3cf22

Browse files
authored
Update getting-started-with-chart-studio.md
1 parent fa8bbcb commit ff3cf22

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

julia/getting-started-with-chart-studio.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jupyter:
2727

2828
To install Chart Studio's Julia package, use the built-in Julia package manager to install the `Plotly` package.
2929

30-
```julia
30+
```
3131
using Pkg
3232
Pkg.add("Plotly")
3333
```
@@ -44,7 +44,7 @@ After installing the Plotly.jl package, you're ready to fire up julia:
4444

4545
and set your credentials:
4646

47-
```julia
47+
```
4848
using Plotly
4949
Plotly.signin("DemoAccount", "lr1c37zw81")
5050
```
@@ -75,7 +75,7 @@ Plot can be set to three different type of privacies: public, private or secret.
7575

7676
By default all plots are set to **public**. Users with free account have the permission to keep one private plot. If you need to save private plots, [upgrade to a pro account](https://plotly.com/plans). If you're a [Personal or Professional user](https://plotly.com/settings/subscription/?modal=true&utm_source=api-docs&utm_medium=support-oss) and would like the default setting for your plots to be private, you can edit your Chart Studio configuration:
7777

78-
```julia
78+
```
7979
using Plotly
8080
Plotly.set_config_file(
8181
world_readable=false,
@@ -91,7 +91,7 @@ If your company has a Chart Studio Enterprise server, change the API endpoint so
9191

9292
In Julia, enter:
9393

94-
```julia
94+
```
9595
using Plotly
9696
Plotly.set_config_file(
9797
plotly_domain="https://plotly.your-company.com",
@@ -105,7 +105,7 @@ Additionally, you can set your configuration so that you generate **private plot
105105

106106
In pJulia, enter:
107107

108-
```julia
108+
```
109109
using Plotly
110110
Plotly.set_config_file(
111111
plotly_domain="https://plotly.your-company.com",
@@ -122,7 +122,7 @@ When plotting online, the plot and data will be saved to your cloud account. The
122122

123123
Copy and paste the following example to create your first hosted Plotly graph using the Plotly Julia library:
124124

125-
```julia
125+
```
126126
using Plotly
127127
128128
trace0 = scatter(x=1:4, y=[10, 15, 13, 17])

0 commit comments

Comments
 (0)