Forum Discussion
F_Reh
3 months agoPost Patron
Adding Data Labels to SPC Chart
Hello, I wish to add Data labels to a SPC Chart (based on PBISPC_DEV, Version 1.4.4.20) so the values can appear against the points on the lines : Kindly Advise.
- 3 months ago
Custom visuals (like PBISPC_DEV):
- Don’t inherit all standard line chart features
- Must explicitly implement things like:
- Data labels
- Tooltips (beyond basic)
- Conditional formatting
PBISPC focuses on SPC logic (mean, UCL/LCL, rules), not labeling
Use tooltips
- Hover already shows values
- You can enhance with a custom tooltip page
Clean and doesn’t clutter the chart
OR
Switch to Deneb (advanced but best control)
Use Deneb:
- Full control via Vega-Lite
- You can:
- Draw SPC lines
- Add labels
- Control formatting precisely
Shravan133
3 months agoSuper User
Custom visuals (like PBISPC_DEV):
- Don’t inherit all standard line chart features
- Must explicitly implement things like:
- Data labels
- Tooltips (beyond basic)
- Conditional formatting
PBISPC focuses on SPC logic (mean, UCL/LCL, rules), not labeling
Use tooltips
- Hover already shows values
- You can enhance with a custom tooltip page
Clean and doesn’t clutter the chart
OR
Switch to Deneb (advanced but best control)
Use Deneb:
- Full control via Vega-Lite
- You can:
- Draw SPC lines
- Add labels
- Control formatting precisely