
Announcements
Since you are working with a SharePoint list and a Column Chart, the issue likely arises because SharePoint stores Choice column values differently. The legend might only be showing one value instead of all unique values.
You need to explicitly define the Legend values by setting Items of the chart properly and ensuring that the data is grouped correctly.
Ensure Your SharePoint Data is Correctly Structured
Qty is a Choice column, SharePoint stores it as a table rather than a plain number.ThisItem.Qty, you may need to extract the .Value like:
Use the GroupBy Function to Aggregate Data
Qty values are stored as choices, group them properly using:
Bind the Chart to the Collection
Items property of the Column Chart to:
Configure the X-Axis and Y-Axis
X-Axis: QtyY-Axis: CountEnsure Legends Display Correctly
ColumnChart.SeriesLabels is not working, manually define the Legends using: