Sets the fill ratio of the `slices`. The default fill value of the y `slices` is 1 meaning that they are entirely shaded. On the other hand Applying a `fill` ratio less than one would allow the creation of openings parallel to the edges. The 'show' property
(self)
| 33 | |
| 34 | @property |
| 35 | def show(self): |
| 36 | """ |
| 37 | Sets the fill ratio of the `slices`. The default fill value of |
| 38 | the y `slices` is 1 meaning that they are entirely shaded. On |
| 39 | the other hand Applying a `fill` ratio less than one would |
| 40 | allow the creation of openings parallel to the edges. |
| 41 | |
| 42 | The 'show' property is a boolean and must be specified as: |
| 43 | - A boolean value: True or False |
| 44 | |
| 45 | Returns |
| 46 | ------- |
| 47 | bool |
| 48 | """ |
| 49 | return self["show"] |
| 50 | |
| 51 | @show.setter |
| 52 | def show(self, val): |