# Setting the size of circle in network graph

**URL:** https://discourse.julialang.org/t/setting-the-size-of-circle-in-network-graph/80480
**Category:** New to Julia
**Created:** [May 4, 2022, 1:53pm UTC](https://discourse.julialang.org/t/setting-the-size-of-circle-in-network-graph/80480 "2022-05-04T13:53:10Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Nash](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/nash/32/14482_2.png) [@Nash](https://discourse.julialang.org/u/Nash)
#### Post date: [May 4, 2022, 1:53pm UTC](https://discourse.julialang.org/t/setting-the-size-of-circle-in-network-graph/80480/1 "2022-05-04T13:53:10Z")

</div>

I have the following code, which produces a circular network. However, I would like to make the circle larger to make the network less compressed. How is that done in the package “GraphRecipes”:

```julia
graphplot(m,
            method = :circular,
           node_weights = ones(1:nodes),
           markercolor = :darkgray,
           markersize = 0.1,
           linecolor = :darkgrey,
           linealpha = 0.5,
           node_shape = :circle,
           names = companies[1:1:nodes],
           fontsize = 4
       )

```

---

<div class="post-metadata">

### Author: ![trilobit](https://avatars.discourse-cdn.com/v4/letter/t/a8b319/32.png) [@trilobit](https://discourse.julialang.org/u/trilobit)
#### Post date: [May 5, 2022, 8:03am UTC](https://discourse.julialang.org/t/setting-the-size-of-circle-in-network-graph/80480/2 "2022-05-05T08:03:49Z")

</div>

“nodesize” instead of “markersize” ?

 ![untitled](https://global.discourse-cdn.com/julialang/original/3X/e/8/e8be90a981c96ffcb5c38055072e8ed2576811da.webp)  
i.e.
