- Notifications
You must be signed in to change notification settings - Fork1
Commita72d9fb
CRITICAL FIX: Add square markers to PNG/PDF pie chart legends
**Problem**: Pie chart legends in PNG/PDF showed ASCII characters instead of colored squares- GitHub Pages pie chart demo had invisible legend markers- Pie charts used get_pie_slice_marker_for_index() returning '-', '=', '%' characters- These ASCII characters don't render as colored squares in PNG/PDF backends**Root Cause**: Pie chart legend creation was separate from regular plots- add_pie_legend_entries() used ASCII characters for all backends- PNG/PDF backends need square markers for color visibility- ASCII characters work for text-based ASCII backend but not graphical backends**Solution**: Backend-aware pie chart legend markers- Modified add_pie_legend_entries() to accept backend_name parameter- ASCII backend: Continue using distinct ASCII characters ('-', '=', '%', etc.)- PNG/PDF backends: Use square markers ('s') for colored legend visibility- Updated setup_figure_legend() to pass backend_name to pie chart function**Changes**:- add_pie_legend_entries(): Added backend_name parameter and conditional logic- Pie chart legends now show colored squares in PNG/PDF instead of invisible ASCII chars- ASCII pie chart legends preserve distinct character markers for text output**This fixes the pie chart legend color visibility seen on GitHub Pages demo**🤖 Generated with [Claude Code](https://claude.com/claude-code)Co-Authored-By: Claude <noreply@anthropic.com>1 parentc466260 commita72d9fb
1 file changed
+11
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
551 | 551 | | |
552 | 552 | | |
553 | 553 | | |
554 | | - | |
| 554 | + | |
555 | 555 | | |
556 | 556 | | |
557 | 557 | | |
| |||
585 | 585 | | |
586 | 586 | | |
587 | 587 | | |
588 | | - | |
| 588 | + | |
589 | 589 | | |
590 | 590 | | |
591 | 591 | | |
| 592 | + | |
592 | 593 | | |
593 | 594 | | |
594 | 595 | | |
| |||
636 | 637 | | |
637 | 638 | | |
638 | 639 | | |
639 | | - | |
640 | | - | |
| 640 | + | |
| 641 | + | |
| 642 | + | |
| 643 | + | |
| 644 | + | |
| 645 | + | |
| 646 | + | |
| 647 | + | |
641 | 648 | | |
642 | 649 | | |
643 | 650 | | |
| |||
0 commit comments
Comments
(0)