Bar Chart Preset
100% Progress Bar
100% Progress Bar is an OPF bar chart preset with canonical workbook metadata, sample data, and engine chart type mapping.
100pct-progress-barOPF type: PERCENTS_STACKED_BARcalculated
Use Case
Rank or compare categories when horizontal labels need room.
Data Requirements
2 series, 6 categories, calculated helper workbook
Group
Horizontal comparisons, ranked values, and progress-style measures.
Series
2 series across 6 categories
Workbook Range
Sheet1!$A$1:$G$5
Source Slide
Slide 27 in the OPF chart gallery deck
When to Use
Use when category names are long, ranking is the main story, or progress should read left to right.
When to Avoid
Avoid for dense time-series narratives where a line or area chart communicates direction better.
Best Practices
1
Sort bars by value when ranking
2
Use a single accent for the key item
3
Keep category labels readable
Recommended Companions
OPF Config
charts:100pct-progress-barOpen Presentation Format
{
"$schema": "https://pptx.dev/schema/opf/v1",
"version": "1.0",
"meta": {
"title": "PPTX.gallery — charts/100pct-progress-bar"
},
"design": {},
"slides": [
{
"id": "gallery-preview-1",
"layout": "chart",
"elements": [
{
"id": "gallery-chart-1",
"type": "chart",
"chartPreset": "100pct-progress-bar",
"data": {
"labels": [
"Q1 2024",
"Q2 2024",
"Q3 2024",
"Q4 2024",
"Q1 2025",
"Q2 2025"
],
"datasets": [
{
"label": "Target",
"values": [
93,
90,
92,
89,
97,
84
]
},
{
"label": "Actual",
"values": [
62,
76,
92,
74,
93,
61
]
}
]
}
}
]
}
]
}Open in OPF Playground
Preview this config live at pptx.dev/playground.