Power BI Visuals Skill
Create and manage visuals on PBIR report pages. No Power BI Desktop connection
is needed -- these commands operate directly on JSON files.
Adding Visuals
# Add by alias (pbi-cli resolves to the PBIR type)
pbi visual add --page page_abc123 --type bar
pbi visual add --page page_abc123 --type card --name "Revenue Card"
# Custom position and size (pixels)
pbi visual add --page page_abc123 --type scatter \
--x 50 --y 400 --width 600 --height 350
# Named visual for easy reference
pbi visual add --page page_abc123 --type combo --name sales_combo
Each visual is created as a folder with a visual.json file inside the page's
visuals/ directory. The template includes the correct schema URL and queryState
roles for the chosen type.
Binding Data
Visuals start empty. Use visual bind with Table[Column] notation to connect
them to your semantic model. The bind options vary by visual type -- see the
type table below.
# Bar chart: category axis + value
pbi visual bind mybar --page p1 \
--category "Geography[Region]" --value "Sales[Revenue]"
# Card: single field
pbi visual bind mycard --page p1 --field "Sales[Total Revenue]"
# Matrix: rows + values + optional column
pbi visual bind mymatrix --page p1 \
--row "Product[Category]" --value "Sales[Amount]" --value "Sales[Quantity]"
# Scatter: X, Y, detail, optional size and legend
pbi visual bind myscatter --page p1 \
--x "Sales[Quantity]" --y "Sales[Revenue]" --detail "Product[Name]"
# Combo chart: category + column series + line series
pbi visual bind mycombo --page p1 \
--category "Calendar[Month]" --column "Sales[Revenue]" --line "Sales[Margin]"
# KPI: indicator + goal + trend axis
pbi visual bind mykpi --page p1 \
--indicator "Sales[Revenue]" --goal "Sales[Target]" --trend "Calendar[Date]"
# Gauge: value + max/target
pbi visual bind mygauge --page p1 \
--value "Sales[Revenue]" --max "Sales[Target]"
Binding uses ROLE_ALIASES to translate friendly names like --value into the PBIR
role name (e.g. Y, Values, Data). Measure vs Column is inferred from the role:
value/indicator/goal/max roles create Measure references, category/row/detail roles
create Column references. Override with --measure flag if needed.
Inspecting and Updating
# List all visuals on a page
pbi visual list --page page_abc123
# Get full details of one visual
pbi visual get visual_def456 --page page_abc123
# Move, resize, or toggle visibility
pbi visual update vis1 --page p1 --width 600 --height 400
pbi visual update vis1 --page p1 --x 100 --y 200
pbi visual update vis1 --page p1 --hidden
pbi visual update vis1 --page p1 --visible
# Delete a visual
pbi visual delete visual_def456 --page page_abc123
Container Properties
Set border, background, or title on the visual container itself:
pbi visual set-container vis1 --page p1 --background "#F0F0F0"
pbi visual set-container vis1 --page p1 --border-color "#CCCCCC" --border-width 2
pbi visual set-container vis1 --page p1 --title "Sales by Region"
Visual Calculations
Add DAX calculations that run inside the visual scope:
pbi visual calc-add vis1 --page p1 --role Values \
--name "RunningTotal" --expression "RUNNINGSUM([Revenue])"
pbi visual calc-list vis1 --page p1
pbi visual calc-delete vis1 --page p1 --name "RunningTotal"
Bulk Operations
Operate on many visuals at once by filtering with --type or --name-pattern:
# Find visuals matching criteria
pbi visual where --page overview --type barChart
pbi visual where --page overview --type kpi --y-min 300
# Bind the same field to ALL bar charts on a page
pbi visual bulk-bind --page overview --type barChart \
--category "Date[Month]" --value "Sales[Revenue]"
# Resize all KPI cards
pbi visual bulk-update --page overview --type kpi --width 250 --height 120
# Hide all visuals matching a pattern
pbi visual bulk-update --page overview --name-pattern "Temp_*" --hidden
# Delete all placeholders
pbi visual bulk-delete --page overview --name-pattern "Placeholder_*"
Filter options for where, bulk-bind, bulk-update, bulk-delete:
--type -- PBIR visual type or alias (e.g. barChart, bar)
--name-pattern -- fnmatch glob on visual name (e.g. Chart_*)
--x-min, --x-max, --y-min, --y-max -- position bounds (pixels)
All bulk commands require at least --type or --name-pattern to prevent
accidental mass operations.
Supported Visual Types (32)
Charts
| Alias |
PBIR Type |
Bind Options |
| bar |
barChart |
--category, --value, --legend |
| line |
lineChart |
--category, --value, --legend |
| column |
columnChart |
--category, --value, --legend |
| area |
areaChart |
--category, --value, --legend |
| ribbon |
ribbonChart |
--category, --value, --legend |
| waterfall |
waterfallChart |
--category, --value, --breakdown |
| stacked_bar |
stackedBarChart |
--category, --value, --legend |
| clustered_bar |
clusteredBarChart |
--category, --value, --legend |
| clustered_column |
clusteredColumnChart |
--category, --value, --legend |
| scatter |
scatterChart |
--x, --y, --detail, --size, --legend |
| funnel |
funnelChart |
--category, --value |
| combo |
lineStackedColumnComboChart |
--category, --column, --line, --legend |
| donut / pie |
donutChart |
--category, --value, --legend |
| treemap |
treemap |
--category, --value |
Cards and KPIs
| Alias |
PBIR Type |
Bind Options |
| card |
card |
--field |
| card_visual |
cardVisual |
--field (modern card) |
| card_new |
cardNew |
--field |
| multi_row_card |
multiRowCard |
--field |
| kpi |
kpi |
--indicator, --goal, --trend |
| gauge |
gauge |
--value, --max / --target |
Tables
| Alias |
PBIR Type |
Bind Options |
| table |
tableEx |
--value |
| matrix |
pivotTable |
--row, --value, --column |
Slicers
| Alias |
PBIR Type |
Bind Options |
| slicer |
slicer |
--field |
| text_slicer |
textSlicer |
--field |
| list_slicer |
listSlicer |
--field |
| advanced_slicer |
advancedSlicerVisual |
--field (tile/image slicer) |
Maps
| Alias |
PBIR Type |
Bind Options |
| azure_map / map |
azureMap |
--category, --size |
Decorative and Navigation
| Alias |
PBIR Type |
Bind Options |
| action_button |
actionButton |
(no data binding) |
| image |
image |
(no data binding) |
| shape |
shape |
(no data binding) |
| textbox |
textbox |
(no data binding) |
| page_navigator |
pageNavigator |
(no data binding) |
Suppressing Auto-Sync (--no-sync)
By default, every write command automatically syncs Power BI Desktop. When
adding or binding many visuals in sequence, Desktop reloads after each one.
Use --no-sync on the visual command group to batch all changes, then call
pbi report reload once at the end:
# Suppress sync while building visuals
pbi visual --no-sync add --page overview --type card --name rev_card
pbi visual --no-sync bind rev_card --page overview --field "Sales[Total Revenue]"
pbi visual --no-sync add --page overview --type bar --name sales_bar
pbi visual --no-sync bind sales_bar --page overview --category "Product[Category]" --value "Sales[Revenue]"
# Single reload when all visuals are done
pbi report reload
JSON Output
All commands support --json for agent consumption:
pbi --json visual list --page overview
pbi --json visual get vis1 --page overview
pbi --json visual where --page overview --type barChart
Gotchas
visual bind infers Measure vs Column from the role, not the underlying TMDL object: A role like --value always creates a Measure reference. If Sales[Revenue] is actually a column (not a measure), the visual renders BLANK with no error. Use --measure or rename to a real measure.
bulk-bind without --type or --name-pattern is blocked, but with a too-loose pattern it can rebind unrelated visuals: --name-pattern "Chart_*" matches Chart_Revenue, Chart_Margin, AND Chart_Drillthrough_Hidden. Always preview with pbi visual where first.
- Visual position
--x/--y is in report-design pixels, not screen pixels: A --x 1280 on a 1280-wide canvas places the visual at the right edge regardless of viewer screen size. Visuals positioned past canvas bounds render off-screen with no warning.
- Visual calculations via
calc-add run AFTER measures in the visual scope: Referencing a measure inside a visual calculation captures the post-filter value. Iterating over the calc as if it were a measure (e.g. inside SUMX) produces unexpected results because the calc only exists within the visual's query scope.
- PBIR visual
name is the folder slug — renaming requires file system move, not a CLI flag: The --name flag only applies at creation. Subsequent visual update does not rename. To rename, delete + re-add (losing the visual ID) or edit the file system directly.
bulk-delete --name-pattern "Placeholder_*" is irreversible and skips no confirmation: Each delete is a folder removal; combined with --no-sync you can wipe dozens of visuals before noticing. Always run pbi visual where with the same pattern first.
1---2name: power-bi-visuals3description: Add, configure, bind data to, and bulk-manage visuals on Power BI PBIR report pages using pbi-cli. Invoke this skill whenever the user mentions "add a chart", "bar chart", "line chart", "card", "KPI", "gauge", "scatter", "table visual", "matrix", "slicer", "combo chart", "bind data", "visual type", "visual layout", "resize visuals", "bulk update visuals", "bulk delete", "visual calculations", or wants to place, move, bind, or remove any visual on a report page. Also invoke when the user asks what visual types are supported or how to connect a visual to their data model.4---5
6# Power BI Visuals Skill
7
8Create and manage visuals on PBIR report pages. No Power BI Desktop connection
9is needed -- these commands operate directly on JSON files.
10
11## Adding Visuals
12
13```bash
14# Add by alias (pbi-cli resolves to the PBIR type)
15pbi visual add --page page_abc123 --type bar
16pbi visual add --page page_abc123 --type card --name "Revenue Card"
17
18# Custom position and size (pixels)
19pbi visual add --page page_abc123 --type scatter \
20 --x 50 --y 400 --width 600 --height 350
21
22# Named visual for easy reference
23pbi visual add --page page_abc123 --type combo --name sales_combo
24```
25
26Each visual is created as a folder with a `visual.json` file inside the page's
27`visuals/` directory. The template includes the correct schema URL and queryState
28roles for the chosen type.
29
30## Binding Data
31
32Visuals start empty. Use `visual bind` with `Table[Column]` notation to connect
33them to your semantic model. The bind options vary by visual type -- see the
34type table below.
35
36```bash
37# Bar chart: category axis + value
38pbi visual bind mybar --page p1 \
39 --category "Geography[Region]" --value "Sales[Revenue]"
40
41# Card: single field
42pbi visual bind mycard --page p1 --field "Sales[Total Revenue]"
43
44# Matrix: rows + values + optional column
45pbi visual bind mymatrix --page p1 \
46 --row "Product[Category]" --value "Sales[Amount]" --value "Sales[Quantity]"
47
48# Scatter: X, Y, detail, optional size and legend
49pbi visual bind myscatter --page p1 \
50 --x "Sales[Quantity]" --y "Sales[Revenue]" --detail "Product[Name]"
51
52# Combo chart: category + column series + line series
53pbi visual bind mycombo --page p1 \
54 --category "Calendar[Month]" --column "Sales[Revenue]" --line "Sales[Margin]"
55
56# KPI: indicator + goal + trend axis
57pbi visual bind mykpi --page p1 \
58 --indicator "Sales[Revenue]" --goal "Sales[Target]" --trend "Calendar[Date]"
59
60# Gauge: value + max/target
61pbi visual bind mygauge --page p1 \
62 --value "Sales[Revenue]" --max "Sales[Target]"
63```
64
65Binding uses ROLE_ALIASES to translate friendly names like `--value` into the PBIR
66role name (e.g. `Y`, `Values`, `Data`). Measure vs Column is inferred from the role:
67value/indicator/goal/max roles create Measure references, category/row/detail roles
68create Column references. Override with `--measure` flag if needed.
69
70## Inspecting and Updating
71
72```bash
73# List all visuals on a page
74pbi visual list --page page_abc123
75
76# Get full details of one visual
77pbi visual get visual_def456 --page page_abc123
78
79# Move, resize, or toggle visibility
80pbi visual update vis1 --page p1 --width 600 --height 400
81pbi visual update vis1 --page p1 --x 100 --y 200
82pbi visual update vis1 --page p1 --hidden
83pbi visual update vis1 --page p1 --visible
84
85# Delete a visual
86pbi visual delete visual_def456 --page page_abc123
87```
88
89## Container Properties
90
91Set border, background, or title on the visual container itself:
92
93```bash
94pbi visual set-container vis1 --page p1 --background "#F0F0F0"
95pbi visual set-container vis1 --page p1 --border-color "#CCCCCC" --border-width 2
96pbi visual set-container vis1 --page p1 --title "Sales by Region"
97```
98
99## Visual Calculations
100
101Add DAX calculations that run inside the visual scope:
102
103```bash
104pbi visual calc-add vis1 --page p1 --role Values \
105 --name "RunningTotal" --expression "RUNNINGSUM([Revenue])"
106
107pbi visual calc-list vis1 --page p1
108pbi visual calc-delete vis1 --page p1 --name "RunningTotal"
109```
110
111## Bulk Operations
112
113Operate on many visuals at once by filtering with `--type` or `--name-pattern`:
114
115```bash
116# Find visuals matching criteria
117pbi visual where --page overview --type barChart
118pbi visual where --page overview --type kpi --y-min 300
119
120# Bind the same field to ALL bar charts on a page
121pbi visual bulk-bind --page overview --type barChart \
122 --category "Date[Month]" --value "Sales[Revenue]"
123
124# Resize all KPI cards
125pbi visual bulk-update --page overview --type kpi --width 250 --height 120
126
127# Hide all visuals matching a pattern
128pbi visual bulk-update --page overview --name-pattern "Temp_*" --hidden
129
130# Delete all placeholders
131pbi visual bulk-delete --page overview --name-pattern "Placeholder_*"
132```
133
134Filter options for `where`, `bulk-bind`, `bulk-update`, `bulk-delete`:
135- `--type` -- PBIR visual type or alias (e.g. `barChart`, `bar`)
136- `--name-pattern` -- fnmatch glob on visual name (e.g. `Chart_*`)
137- `--x-min`, `--x-max`, `--y-min`, `--y-max` -- position bounds (pixels)
138
139All bulk commands require at least `--type` or `--name-pattern` to prevent
140accidental mass operations.
141
142## Supported Visual Types (32)
143
144### Charts
145
146| Alias | PBIR Type | Bind Options |
147|--------------------|------------------------------|-----------------------------------------------|
148| bar | barChart | --category, --value, --legend |
149| line | lineChart | --category, --value, --legend |
150| column | columnChart | --category, --value, --legend |
151| area | areaChart | --category, --value, --legend |
152| ribbon | ribbonChart | --category, --value, --legend |
153| waterfall | waterfallChart | --category, --value, --breakdown |
154| stacked_bar | stackedBarChart | --category, --value, --legend |
155| clustered_bar | clusteredBarChart | --category, --value, --legend |
156| clustered_column | clusteredColumnChart | --category, --value, --legend |
157| scatter | scatterChart | --x, --y, --detail, --size, --legend |
158| funnel | funnelChart | --category, --value |
159| combo | lineStackedColumnComboChart | --category, --column, --line, --legend |
160| donut / pie | donutChart | --category, --value, --legend |
161| treemap | treemap | --category, --value |
162
163### Cards and KPIs
164
165| Alias | PBIR Type | Bind Options |
166|--------------------|------------------------------|-----------------------------------------------|
167| card | card | --field |
168| card_visual | cardVisual | --field (modern card) |
169| card_new | cardNew | --field |
170| multi_row_card | multiRowCard | --field |
171| kpi | kpi | --indicator, --goal, --trend |
172| gauge | gauge | --value, --max / --target |
173
174### Tables
175
176| Alias | PBIR Type | Bind Options |
177|--------------------|------------------------------|-----------------------------------------------|
178| table | tableEx | --value |
179| matrix | pivotTable | --row, --value, --column |
180
181### Slicers
182
183| Alias | PBIR Type | Bind Options |
184|--------------------|------------------------------|-----------------------------------------------|
185| slicer | slicer | --field |
186| text_slicer | textSlicer | --field |
187| list_slicer | listSlicer | --field |
188| advanced_slicer | advancedSlicerVisual | --field (tile/image slicer) |
189
190### Maps
191
192| Alias | PBIR Type | Bind Options |
193|--------------------|------------------------------|-----------------------------------------------|
194| azure_map / map | azureMap | --category, --size |
195
196### Decorative and Navigation
197
198| Alias | PBIR Type | Bind Options |
199|--------------------|------------------------------|-----------------------------------------------|
200| action_button | actionButton | (no data binding) |
201| image | image | (no data binding) |
202| shape | shape | (no data binding) |
203| textbox | textbox | (no data binding) |
204| page_navigator | pageNavigator | (no data binding) |
205
206## Suppressing Auto-Sync (--no-sync)
207
208By default, every write command automatically syncs Power BI Desktop. When
209adding or binding many visuals in sequence, Desktop reloads after each one.
210
211Use `--no-sync` on the `visual` command group to batch all changes, then call
212`pbi report reload` once at the end:
213
214```bash
215# Suppress sync while building visuals
216pbi visual --no-sync add --page overview --type card --name rev_card
217pbi visual --no-sync bind rev_card --page overview --field "Sales[Total Revenue]"
218pbi visual --no-sync add --page overview --type bar --name sales_bar
219pbi visual --no-sync bind sales_bar --page overview --category "Product[Category]" --value "Sales[Revenue]"
220
221# Single reload when all visuals are done
222pbi report reload
223```
224
225## JSON Output
226
227All commands support `--json` for agent consumption:
228
229```bash
230pbi --json visual list --page overview
231pbi --json visual get vis1 --page overview
232pbi --json visual where --page overview --type barChart
233```
234
235---
236
237## Gotchas
238
239- **`visual bind` infers Measure vs Column from the role, not the underlying TMDL object:** A role like `--value` always creates a Measure reference. If `Sales[Revenue]` is actually a column (not a measure), the visual renders BLANK with no error. Use `--measure` or rename to a real measure.
240- **`bulk-bind` without `--type` or `--name-pattern` is blocked, but with a too-loose pattern it can rebind unrelated visuals:** `--name-pattern "Chart_*"` matches `Chart_Revenue`, `Chart_Margin`, AND `Chart_Drillthrough_Hidden`. Always preview with `pbi visual where` first.
241- **Visual position `--x`/`--y` is in report-design pixels, not screen pixels:** A `--x 1280` on a 1280-wide canvas places the visual at the right edge regardless of viewer screen size. Visuals positioned past canvas bounds render off-screen with no warning.
242- **Visual calculations via `calc-add` run AFTER measures in the visual scope:** Referencing a measure inside a visual calculation captures the post-filter value. Iterating over the calc as if it were a measure (e.g. inside `SUMX`) produces unexpected results because the calc only exists within the visual's query scope.
243- **PBIR visual `name` is the folder slug — renaming requires file system move, not a CLI flag:** The `--name` flag only applies at creation. Subsequent `visual update` does not rename. To rename, delete + re-add (losing the visual ID) or edit the file system directly.
244- **`bulk-delete --name-pattern "Placeholder_*"` is irreversible and skips no confirmation:** Each delete is a folder removal; combined with `--no-sync` you can wipe dozens of visuals before noticing. Always run `pbi visual where` with the same pattern first.
245