XY (Scatter) Chart Preset
Dot Plot 4x
Dot Plot 4x is an OPF xy (scatter) chart preset with canonical workbook metadata, sample data, and engine chart type mapping.
Use Case
Explore relationships between two numeric variables or compare many points without bars.
Data Requirements
4 series, 8 categories, calculated helper workbook, 2 series groups
Group
Point-based relationship charts for correlation, distribution, and paired measures.
Series
4 series across 8 categories
Workbook Range
Sheet1!$A$1:$I$8
Source Slide
Slide 37 in the OPF chart gallery deck
When to Use
Use for correlation, outlier detection, and paired-value analysis.
When to Avoid
Avoid when the audience needs a simple ranked comparison or when points cannot be labeled clearly.
Best Practices
Explain both axes clearly
Highlight outliers intentionally
Avoid overplotting with too many points
Recommended Companions
Color Schemes
OPF Config
charts:dot-plot-4x{
"$schema": "https://pptx.dev/schema/opf/v1",
"version": "1.0",
"meta": {
"title": "PPTX.gallery — charts/dot-plot-4x"
},
"design": {},
"slides": [
{
"id": "gallery-preview-1",
"layout": "chart",
"elements": [
{
"id": "gallery-chart-1",
"type": "chart",
"chartPreset": "dot-plot-4x",
"data": {
"labels": [
"Item 1",
"Item 2",
"Item 3",
"Item 4",
"Item 5",
"Item 6",
"Item 7",
"Item 8"
],
"datasets": [
{
"label": "2020",
"values": [
427110,
493537,
515922,
307963,
179688,
354646,
206851,
416232
]
},
{
"label": "2021",
"values": [
226935,
693423,
143064,
464069,
658623,
549186,
488571,
172306
]
},
{
"label": "2022",
"values": [
630538,
457806,
113266,
540463,
614013,
210665,
554582,
479781
]
},
{
"label": "2023",
"values": [
582071,
260422,
556641,
284692,
647091,
383201,
664315,
606983
]
}
]
}
}
]
}
]
}Preview this config live at pptx.dev/playground.