Skip to main content

Formatting reference

Every setting in the Parliament Chart's Format pane (the paint-roller icon), card by card, in pane order, with its range and default. For task-based walkthroughs, follow the links at the end of each section.

The five formatting cards: License, Layout, Legend, Tooltip and Data Colors

License

SettingTypeDefault
License keyText(empty)
StatusRead-only text(hidden until a key is entered)

Only needed for environments AppSource licensing doesn't cover. See Direct license keys.

Layout

SettingOptionsDefault
Arc90 – 360 degrees180
Seat outlineOn · OffOff
Show Total SeatsOn · OffOn
  • Arc is the angular width of the chart. 180 is the classic hemicycle; 360 closes it into a ring. The arch stays centred on the vertical axis at every value.
  • Seat outline draws a thin dark border around each seat. The colour isn't configurable.
  • Show Total Seats puts the total in the middle of the arch, and switches to the hovered or selected party's count in that party's colour. Turning it off gives the arch more room, and also removes the party-name band.
  • Rows, seat size and seat spacing are calculated from the seat count and the arc. There are no settings for them.

Layout & arc

Legend

SettingOptionsDefault
ShowOn · OffOn
Seat countsOn · OffOff
PositionTop · Top center · Bottom · Bottom center · Left · Left center · Right · Right centerBottom center
Show TitleOn · OffOff
Title TextFree textParty
ColorAny colour#666666
Text Size6 – 6010
  • Seat counts appends each party's total to its entry — Labour (411) — formatted for the viewer's locale.
  • No title is drawn until Show Title is on.
  • Legend order matches the arch: Sort Order if bound, otherwise alphabetical.
  • Legend entries are clickable filters and hoverable highlights.

Legend

Tooltip

SettingOptionsDefault
ShowOn · OffOn

Turning it off removes hover tooltips entirely. Hover emphasis and the centre label are unaffected. Report-page tooltips are configured under General → Tooltips, not here.

Tooltips

Data Colors

SettingOptionsDefault
One row per party, named after the partyAny colourThe next colour from the report theme palette
  • One colour picker per party currently in the chart; the list rebuilds as the data changes.
  • A colour bound to the Custom Color field overrides the picker for that party.
  • Defaults are handed out in the order parties first appear in the data, so removing a party can shift the colours of the ones after it.

Party colours

Settings the host overrides

ModeWhat changes
High contrastEvery colour comes from the Windows system palette: all seats take the foreground colour, the legend text too, on the system background. Parties are told apart by position and by the legend rather than by colour. Your settings are kept and return when high contrast is switched off.
Dashboard tiles / read-only hostsSelection and cross-filtering are disabled by Power BI. Tooltips, hover emphasis and rendering are unaffected.
Cross-highlightingSeats excluded by another visual's selection dim to 30%, at seat resolution. See Being filtered by other visuals.
Export to PDF / PowerPoint, email subscriptionsThe visual reports its render status to Power BI, so exports wait for the arch to finish drawing. The license notification is never included in an export.

Setting the Parliament Chart from a report theme

All of these settings can be set in a report theme JSON file, which is the practical way to standardize many reports — or to deploy a direct license key across a tenant. Use the visual's GUID as the key:

{
"name": "Parliament Chart defaults",
"visualStyles": {
"parliament544886D08EFF4EE48B352842F1B02926": {
"*": {
"seats": [
{ "arcSpan": 180, "showOutline": false, "showTotalSeats": true }
],
"legend": [
{
"show": true,
"showSeatCounts": true,
"position": "BottomCenter",
"showTitle": false,
"titleText": "Party",
"labelColor": { "solid": { "color": "#666666" } },
"fontSize": 10
}
],
"tooltip": [{ "show": true }]
}
}
}
}

Values match the pane options exactly. position is one of "Top", "TopCenter", "Bottom", "BottomCenter", "Left", "LeftCenter", "Right", "RightCenter"; arcSpan is degrees.

Party colours can't go in a theme's visualStyles block

Data Colors pickers are bound to individual parties, so they have no place in a "*" block. Set your organisation's category colours in the theme's top-level dataColors palette instead — the visual draws its defaults from it — or bind a Custom Color column.

note

Report themes set defaults. Anything an editor changes in the Format pane wins over the theme for that visual.

Out-of-range values are safe

Arc is re-checked when the report loads. A value outside 90–360 — from a hand-edited theme file, or a report saved by an older build — is clamped back into range rather than breaking the visual, and a value that isn't a number at all falls back to 180.

Reports built with a version before v1.2.0.0, when the legend positions had different names, keep the position they were set to.

Deploying a license key through a theme

{
"name": "ChartPad licensing",
"visualStyles": {
"parliament544886D08EFF4EE48B352842F1B02926": {
"*": {
"license": [{ "key": "PBI-your-key-here" }]
}
}
}
}

Only set key. The status property is a read-only display line the visual fills in itself. See Direct license keys.

See also