# Makie "attributes" for figure, axis, and plot

**URL:** https://discourse.julialang.org/t/makie-attributes-for-figure-axis-and-plot/82697
**Category:** New to Julia
**Created:** [June 13, 2022, 6:03pm UTC](https://discourse.julialang.org/t/makie-attributes-for-figure-axis-and-plot/82697 "2022-06-13T18:03:53Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![filchristou](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/filchristou/32/26760_2.png) [@filchristou](https://discourse.julialang.org/u/filchristou)
#### Post date: [June 14, 2022, 10:36am UTC](https://discourse.julialang.org/t/makie-attributes-for-figure-axis-and-plot/82697/2 "2022-06-14T10:36:06Z")

</div>

(just an end-user reply)

> [@mjmat](#):
>
> typing `help(Axis)`, but that doesn’t work.

I guess what the authors suggest is to just write into the [REPL](https://docs.julialang.org/en/v1/stdlib/REPL/#Help-mode) `? Axis`

When you create a figure essentially you instantiate a [`Scene`](https://makie.juliaplots.org/v0.15.2/documentation/scenes/) and the `resolution` is then an attribute inside the `Scene` struct. You can access it with `fig.scene.camera.resolution`, but I don’t _think_ that you can change it and simply expect it to automatically update.  
It never occurred to me to have to manually change the scene attributes after initialization and still I never got to use the `Figure.attributes`.  
Most of the user functionality regarding `attributes` in Makie is interacting with the `ax` and `plt`.  
For `Axis` there are also several functions defined to do this like [for example](https://makie.juliaplots.org/v0.15/examples/layoutables/axis/#setting_axis_limits_and_reversing_axes).

Have a look also [here](https://discourse.julialang.org/t/no-docs-for-figure-attributes-in-makie/66683) for more info in `Figure.attributes`.

But for more specifics, it all comes down to what exactly you wish to do.

---

_[View the full topic](https://discourse.julialang.org/t/makie-attributes-for-figure-axis-and-plot/82697)._
