We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f4d2d7 commit bf3023dCopy full SHA for bf3023d
docs/table-features/exporting-data.md
@@ -140,6 +140,8 @@ This feature is only available for XLS files.
140
141
You can add stripped row style to your outputted file style using the `striped()` and passing the `$color` with a color hex code.
142
143
+If used without passing a color, `d0d3d8` is used by default.
144
+
145
Example:
146
147
```php
@@ -157,7 +159,7 @@ class DishTable extends PowerGridComponent
157
159
public function setUp(): array
158
160
{
161
PowerGrid::exportable(fileName: 'my-export-file') // [!code ++:2]
- ->stripe('A6ACCD'),
162
+ ->striped('A6ACCD'),
163
}
164
165
```
0 commit comments