Implementing .NET MAUI Pyramid Charts
Guide users to implement Syncfusion .NET MAUI Pyramid Chart (SfPyramidChart), which visualizes proportions of a total in hierarchical segments, making it ideal for displaying parts-to-whole relationships in high-quality .NET MAUI applications. As a single-series chart without axes, data is represented as percentages where the sum of parts equals the whole.
When to Use This Skill
Use this skill when the user needs to:
- Create pyramid charts to visualize hierarchical or proportional data in .NET MAUI applications
- Display parts-to-whole relationships where segments represent percentages of a total
- Implement funnel-like visualizations for sales stages, process flows, or demographic breakdowns
- Add interactive features like tooltips, legends, and data labels to pyramid charts
- Customize appearance with palettes, gradients, segment spacing, and orientation
- Enable modern UI effects like liquid glass styling for iOS/macOS applications
- Export chart visualizations as images (JPEG/PNG) or streams for reports and documents
- Configure data binding from view models to pyramid chart segments
Component Overview
The SfPyramidChart control provides:
- Single-series hierarchical data visualization
- Interactive tooltips and legends with customization
- Rich data label placement options (Auto, Inner, Center, Outer)
- Custom palette brushes and gradient support
- Two pyramid modes: Linear (height-based) and Surface (area-based)
- Segment spacing control with GapRatio
- Vertical and horizontal orientation options
- Modern liquid glass visual effects (iOS/macOS .NET 10+)
- Export to image formats or streams
- Toggle series visibility through legend interaction
- Scrollable legends for overflow handling
Documentation and Navigation Guide
Getting Started
📄 Read: references/getting-started.md
When the user needs to:
- Install the Syncfusion.Maui.Charts NuGet package
- Initialize SfPyramidChart in XAML or C#
- Create view models and bind data to the chart
- Configure ItemsSource, XBindingPath, and YBindingPath
- Understand basic pyramid chart setup and namespace imports
- See complete working examples with data binding
Data Labels
📄 Read: references/data-labels.md
When the user needs to:
- Enable and display data labels on pyramid segments
- Configure PyramidDataLabelSettings for label customization
- Control label placement (Auto, Inner, Center, Outer)
- Set label context to show X values or Y values
- Style labels with fonts, colors, backgrounds, borders, and corner radius
- Use series palette colors for label backgrounds
- Apply margins and customize label appearance
Legend
📄 Read: references/legend.md
When the user needs to:
- Add and configure ChartLegend to display segment information
- Customize legend label styles (font, color, size, attributes)
- Set legend icon types and customize icon appearance
- Position legends (Top, Bottom, Left, Right)
- Create floating legends with offset positioning
- Enable toggle series visibility through legend taps
- Customize legend layout with ItemsLayout
- Use custom legend item templates
- Handle LegendItemCreated events
- Override maximum size requests for legend view
Tooltip
📄 Read: references/tooltip.md
When the user needs to:
- Enable tooltips for displaying segment information on hover
- Configure ChartTooltipBehavior for tooltip customization
- Style tooltip appearance (background, fonts, colors, margins)
- Control tooltip display duration
- Create custom tooltip templates for advanced UI
- Bind tooltip content to item data properties
Appearance and Customization
📄 Read: references/appearance-customization.md
When the user needs to:
- Apply custom palette brushes to pyramid segments
- Use gradient fills (LinearGradientBrush, RadialGradientBrush)
- Switch between Linear and Surface pyramid modes
- Understand mode differences (height-based vs area-based)
- Control segment spacing with GapRatio property
- Implement visual styling best practices
- Create sophisticated gradient effects for segments
Orientation and Visual Effects
📄 Read: references/orientation-and-effects.md
When the user needs to:
- Change chart orientation from Vertical to Horizontal
- Implement liquid glass visual effects (iOS/macOS .NET 10+)
- Integrate SfGlassEffectView for modern UI styling
- Enable glass effects for tooltips
- Configure EffectType (Regular vs Clear glass appearance)
- Apply best practices for glass effects over backgrounds
- Use transparent backgrounds in custom tooltip templates
Exporting
📄 Read: references/exporting.md
When the user needs to:
- Export pyramid charts as images (JPEG or PNG)
- Use SaveAsImage method for file export
- Understand platform-specific save locations
- Configure file writing permissions for Android and Windows Phone
- Set iOS photo album access permissions
- Export charts as streams using GetStreamAsync
- Integrate chart streams with PDF, Excel, or Word components
- Handle ImageFileFormat options
1---2name: syncfusion-maui-pyramid-charts3description: Implements Syncfusion .NET MAUI Pyramid Chart (SfPyramidChart) for visually representing hierarchical, proportional, and parts-to-whole data using pyramid-shaped segments. Use this for pyramid charts, hierarchical data visualization, proportional data display, or segment-based charts. This skill covers installation, data binding, legends, tooltips, data labels, appearance customization, and gradients.4---5
6# Implementing .NET MAUI Pyramid Charts
7
8Guide users to implement Syncfusion .NET MAUI Pyramid Chart (SfPyramidChart), which visualizes proportions of a total in hierarchical segments, making it ideal for displaying parts-to-whole relationships in high-quality .NET MAUI applications. As a single-series chart without axes, data is represented as percentages where the sum of parts equals the whole.
9
10## When to Use This Skill
11
12Use this skill when the user needs to:
13
14- **Create pyramid charts** to visualize hierarchical or proportional data in .NET MAUI applications
15- **Display parts-to-whole relationships** where segments represent percentages of a total
16- **Implement funnel-like visualizations** for sales stages, process flows, or demographic breakdowns
17- **Add interactive features** like tooltips, legends, and data labels to pyramid charts
18- **Customize appearance** with palettes, gradients, segment spacing, and orientation
19- **Enable modern UI effects** like liquid glass styling for iOS/macOS applications
20- **Export chart visualizations** as images (JPEG/PNG) or streams for reports and documents
21- **Configure data binding** from view models to pyramid chart segments
22
23## Component Overview
24
25The **SfPyramidChart** control provides:
26- Single-series hierarchical data visualization
27- Interactive tooltips and legends with customization
28- Rich data label placement options (Auto, Inner, Center, Outer)
29- Custom palette brushes and gradient support
30- Two pyramid modes: Linear (height-based) and Surface (area-based)
31- Segment spacing control with GapRatio
32- Vertical and horizontal orientation options
33- Modern liquid glass visual effects (iOS/macOS .NET 10+)
34- Export to image formats or streams
35- Toggle series visibility through legend interaction
36- Scrollable legends for overflow handling
37
38## Documentation and Navigation Guide
39
40### Getting Started
41
42📄 **Read:** [references/getting-started.md](references/getting-started.md)
43
44When the user needs to:
45- Install the Syncfusion.Maui.Charts NuGet package
46- Initialize SfPyramidChart in XAML or C#
47- Create view models and bind data to the chart
48- Configure ItemsSource, XBindingPath, and YBindingPath
49- Understand basic pyramid chart setup and namespace imports
50- See complete working examples with data binding
51
52### Data Labels
53
54📄 **Read:** [references/data-labels.md](references/data-labels.md)
55
56When the user needs to:
57- Enable and display data labels on pyramid segments
58- Configure PyramidDataLabelSettings for label customization
59- Control label placement (Auto, Inner, Center, Outer)
60- Set label context to show X values or Y values
61- Style labels with fonts, colors, backgrounds, borders, and corner radius
62- Use series palette colors for label backgrounds
63- Apply margins and customize label appearance
64
65### Legend
66
67📄 **Read:** [references/legend.md](references/legend.md)
68
69When the user needs to:
70- Add and configure ChartLegend to display segment information
71- Customize legend label styles (font, color, size, attributes)
72- Set legend icon types and customize icon appearance
73- Position legends (Top, Bottom, Left, Right)
74- Create floating legends with offset positioning
75- Enable toggle series visibility through legend taps
76- Customize legend layout with ItemsLayout
77- Use custom legend item templates
78- Handle LegendItemCreated events
79- Override maximum size requests for legend view
80
81### Tooltip
82
83📄 **Read:** [references/tooltip.md](references/tooltip.md)
84
85When the user needs to:
86- Enable tooltips for displaying segment information on hover
87- Configure ChartTooltipBehavior for tooltip customization
88- Style tooltip appearance (background, fonts, colors, margins)
89- Control tooltip display duration
90- Create custom tooltip templates for advanced UI
91- Bind tooltip content to item data properties
92
93### Appearance and Customization
94
95📄 **Read:** [references/appearance-customization.md](references/appearance-customization.md)
96
97When the user needs to:
98- Apply custom palette brushes to pyramid segments
99- Use gradient fills (LinearGradientBrush, RadialGradientBrush)
100- Switch between Linear and Surface pyramid modes
101- Understand mode differences (height-based vs area-based)
102- Control segment spacing with GapRatio property
103- Implement visual styling best practices
104- Create sophisticated gradient effects for segments
105
106### Orientation and Visual Effects
107
108📄 **Read:** [references/orientation-and-effects.md](references/orientation-and-effects.md)
109
110When the user needs to:
111- Change chart orientation from Vertical to Horizontal
112- Implement liquid glass visual effects (iOS/macOS .NET 10+)
113- Integrate SfGlassEffectView for modern UI styling
114- Enable glass effects for tooltips
115- Configure EffectType (Regular vs Clear glass appearance)
116- Apply best practices for glass effects over backgrounds
117- Use transparent backgrounds in custom tooltip templates
118
119### Exporting
120
121📄 **Read:** [references/exporting.md](references/exporting.md)
122
123When the user needs to:
124- Export pyramid charts as images (JPEG or PNG)
125- Use SaveAsImage method for file export
126- Understand platform-specific save locations
127- Configure file writing permissions for Android and Windows Phone
128- Set iOS photo album access permissions
129- Export charts as streams using GetStreamAsync
130- Integrate chart streams with PDF, Excel, or Word components
131- Handle ImageFileFormat options
132