Skip to content

Scatter Chart

The Scatter Chart component displays data points on X and Y axes (e.g. for correlation or distribution). It supports a data source and column mapping for X, Y, and optional category/size.

PropertyTypeDescriptionExample
categoryColumnTextColumn for category (e.g. point label or group)."accountName"
valueColumnTextColumn for value (often Y-axis or second measure)."revenue"
aggregationMethodEnumCount, Sum, Avg, etc. (if aggregating).Sum
chartTitleTextTitle above the chart."Revenue vs. Count"
showLabelsBooleanShow labels.true
showLegendBooleanShow legend.true
showTooltipBooleanShow tooltips on hover.true
colorModeEnumDefault, Theme, or Custom.Theme
customColorsTextJSON map of category to hex color (when colorMode is Custom).{}

(Scatter charts may have additional X/Y column properties in the manifest; check the Properties pane in Power Apps Studio.)

  • Canvas: Set Items to your data source. Set the column properties that map to X and Y (and category if used). Use AggregationMethod if the component aggregates.
  • Model-Driven: Add the control where a data set is available; configure the column mapping.

Bind Items to a collection or table. The chart plots points according to the configured column mapping.