From bf3023d9cb04669937e30c29927cb0649e003a54 Mon Sep 17 00:00:00 2001 From: Matthieu Lempereur Date: Thu, 17 Oct 2024 11:37:24 +0200 Subject: [PATCH] exporting-data-striped --- docs/table-features/exporting-data.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/table-features/exporting-data.md b/docs/table-features/exporting-data.md index cc6cacc..bc1e18e 100644 --- a/docs/table-features/exporting-data.md +++ b/docs/table-features/exporting-data.md @@ -140,6 +140,8 @@ This feature is only available for XLS files. You can add stripped row style to your outputted file style using the `striped()` and passing the `$color` with a color hex code. +If used without passing a color, `d0d3d8` is used by default. + Example: ```php @@ -157,7 +159,7 @@ class DishTable extends PowerGridComponent public function setUp(): array { PowerGrid::exportable(fileName: 'my-export-file') // [!code ++:2] - ->stripe('A6ACCD'), + ->striped('A6ACCD'), } } ```