# incresing the z axis scale of multiple different filters

**URL:** https://discourse.paraview.org/t/incresing-the-z-axis-scale-of-multiple-different-filters/2249
**Category:** ParaView Support
**Created:** [July 18, 2019, 4:14pm UTC](https://discourse.paraview.org/t/incresing-the-z-axis-scale-of-multiple-different-filters/2249 "2019-07-18T16:14:33Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Darion](https://discourse.paraview.org/letter_avatar_proxy/v4/letter/d/49beb7/32.png) [@Darion](https://discourse.paraview.org/u/Darion)
#### Post date: [July 18, 2019, 4:14pm UTC](https://discourse.paraview.org/t/incresing-the-z-axis-scale-of-multiple-different-filters/2249/1 "2019-07-18T16:14:33Z")

</div>

I’m some what new to Para View so please bear with me. I have a model in Para View with multiple different filters active at any given time. I’m trying to find a way to modify the z axes on the entire model so some properties of it can be more easily viewed but it would be extremely inconvenient if I had to go into the scale of each individual filter and change the value every time I needed to adjust it. Dose anyone know of a way to get the entire modules scale to function under one variable?

---

<div class="post-metadata">

### Author: ![cory.quammen](https://discourse.paraview.org/user_avatar/discourse.paraview.org/cory.quammen/32/11193_2.png) [@cory.quammen](https://discourse.paraview.org/u/cory.quammen)
#### Post date: [July 19, 2019, 2:24pm UTC](https://discourse.paraview.org/t/incresing-the-z-axis-scale-of-multiple-different-filters/2249/2 "2019-07-19T14:24:13Z")

</div>

There isn’t a global parameter to scale the Z-axes, but you could run a small script to do this:

```python
for rep in GetRepresentations().values():
    rep.Scale = [1.0, 1.0, 2.0]

```

This can be run in the _Python Shell_, which you can open with the View -\> Python shell menu item.

---

<div class="post-metadata">

### Author: ![Darion](https://discourse.paraview.org/letter_avatar_proxy/v4/letter/d/49beb7/32.png) [@Darion](https://discourse.paraview.org/u/Darion)
#### Post date: [July 19, 2019, 2:26pm UTC](https://discourse.paraview.org/t/incresing-the-z-axis-scale-of-multiple-different-filters/2249/3 "2019-07-19T14:26:05Z")

</div>

Thanks for letting me know.
