Sets the cell value formatting rule using d3 formatting mini- languages which are very similar to those in Python. For numbers, see: https://github.com/d3/d3-format/tree/v1.4.5#d3-format. The 'format' property is an array that may be specified as a tuple,
(self)
| 106 | |
| 107 | @property |
| 108 | def format(self): |
| 109 | """ |
| 110 | Sets the cell value formatting rule using d3 formatting mini- |
| 111 | languages which are very similar to those in Python. For |
| 112 | numbers, see: |
| 113 | https://github.com/d3/d3-format/tree/v1.4.5#d3-format. |
| 114 | |
| 115 | The 'format' property is an array that may be specified as a tuple, |
| 116 | list, numpy array, or pandas Series |
| 117 | |
| 118 | Returns |
| 119 | ------- |
| 120 | numpy.ndarray |
| 121 | """ |
| 122 | return self["format"] |
| 123 | |
| 124 | @format.setter |
| 125 | def format(self, val): |
no outgoing calls