power-bi-visuals
Create and manage visuals directly on PBIR report pages without Power BI Desktop. Add charts, cards, KPIs, gauges, tables, and matrices; bind them to your data model using Table[Column] notation; and perform bulk operations across multiple visuals by type or name pattern.
Power BI Visuals adds and configures charts, cards, and tables on PBIR report pages using pbi-cli.
AI-generated summary based on this skill's SKILL.md
Install
julianobarbosa/claude-code-skills/power-bi-visuals · repository language: Python
git clone https://github.com/julianobarbosa/claude-code-skills
cp -r claude-code-skills/skills/power-bi-visuals ~/.claude/skills/power-bi-visualsFrequently asked questions
AI-generated answers based on this skill's SKILL.md and metadata
How do I add a bar chart to a Power BI report?
power-bi-visuals lets you add a bar chart directly to your PBIR report page. Use the visual creation interface to select the bar chart type, then bind it to your semantic model by specifying fields in Table[Column] notation. Configure axes, legends, and formatting through the visual's property panel to match your reporting needs.
What chart types does power-bi-visuals support?
power-bi-visuals supports a wide range of chart types including bar, line, scatter, combo, matrix, table, treemap, donut, and pie charts. You can also create specialized visuals like KPI cards, gauges, and slicers. Each type can be configured with different data bindings and styling options directly on your report page.
How do I bind data to a Power BI visual?
power-bi-visuals uses field references in Table[Column] notation to bind semantic model data to visuals. Select your visual, access the data binding panel, and specify which fields from your model should populate values, categories, or other visual properties. This approach works across all supported chart and card types.
Can I resize and move visuals in power-bi-visuals?
Yes. power-bi-visuals supports bulk management of visuals—you can resize, move, and delete multiple visuals at once by selecting them together or using type or name pattern filters. This streamlines layout adjustments and cleanup operations across your report pages without needing Power BI Desktop.
How do I create a KPI card or gauge in power-bi-visuals?
power-bi-visuals lets you create KPI cards and gauges directly on your report. Select the card or gauge visual type, bind it to a measure or field from your semantic model, and configure thresholds, colors, and labels through the property panel. These specialized visuals help highlight key metrics at a glance.
Can I add slicers and perform bulk operations?
power-bi-visuals supports slicer creation for filtering and bulk operations across multiple visuals. Add a slicer, bind it to a field, then use bulk selection to manage many visuals together—resize, reposition, or delete them in one action. This is especially useful for organizing complex report layouts efficiently.
SKILL.md
rendered from the published skill — quoted content, verbatim
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
```bash
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
(truncated - see the full file via the links below)
Read as markdown · JSON record · Browse the source repository
File tree — 1 file
skills/power-bi-visuals/SKILL.md