Here is a resource about how to create some nice labels in a different shape, a bubble.
This repository contains resources for implementing a bubble-style column chart design in Power BI. This custom design transforms the standard square or rounded square column labels into bubble-shaped labels, creating a more visually engaging chart experience.
- Bubble Labels.pbix: A sample Power BI file demonstrating the bubble column chart implementation
- Theme - Bubble.json: Theme JSON file with the necessary configurations for resizing the bubble effect
- Visual Bubble Label.png: Visual preview of the bubble column chart design
{
"visualStyles": {
"lineClusteredColumnComboChart": {
"*": {
"lineStyles": [
{
"showMarker": true,
"markerShape": "circle",
"markerSize": 35
}
]
}
}
}
}
This design modification replaces traditional column chart bars with circular bubble markers. The key advantage is improved visual aesthetics while maintaining data clarity. You can adjust the size of the bubble markers to suit your specific visualization needs.
- Download the JSON theme file from this repository
- In Power BI Desktop, go to View → Themes → Browse for themes
- Select the downloaded JSON file
- Apply the theme to your report
- Important: Adjust the marker sizing in your column chart properties to achieve the optimal bubble appearance
You can customize the bubble design by modifying the following parameters in the JSON file:
- Bubble size (marker radius)
- Color palette
- Border thickness
- Transparency levels
The included preview image shows how the bubble design transforms standard column charts into a more modern visualization.