Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,12 @@ Add `--format text` for human-readable output, or `--format yaml` for YAML.
| `gws sheets add-filter <id> <range>` | Set basic filter on range |
| `gws sheets clear-filter <id>` | Clear basic filter (`--sheet`) |
| `gws sheets add-filter-view <id> <range>` | Add filter view (`--name`) |
| `gws sheets add-chart <id>` | Add embedded chart (`--type`, `--data`, `--title`, `--sheet`) |
| `gws sheets list-charts <id>` | List all charts in a spreadsheet |
| `gws sheets delete-chart <id>` | Delete a chart (`--chart-id`) |
| `gws sheets add-conditional-format <id> <range>` | Add conditional format rule (`--rule`, `--value`, `--bg-color`, `--bold`) |
| `gws sheets list-conditional-formats <id>` | List conditional format rules (`--sheet`) |
| `gws sheets delete-conditional-format <id>` | Delete conditional format rule (`--sheet`, `--index`) |

### Slides

Expand Down
6 changes: 6 additions & 0 deletions cmd/commands_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,12 @@ func TestSheetsCommands(t *testing.T) {
{"add-filter"},
{"clear-filter"},
{"add-filter-view"},
{"add-chart"},
{"list-charts"},
{"delete-chart"},
{"add-conditional-format"},
{"list-conditional-formats"},
{"delete-conditional-format"},
}

for _, tt := range tests {
Expand Down
Loading
Loading