Skip to content

Commit 52b71ec

Browse files
commit
1 parent d6a0c3f commit 52b71ec

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

MAUI/SunburstChart/DrillDown.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Drill down in .NET MAUI Sunburst Chart control | Syncfusion
4-
description: This section explains how to enable and customize drill down toolbar in the Syncfusion<sup>®</sup> .NET MAUI Sunburst Chart control.
3+
title: Drill Down in .NET MAUI Sunburst Chart control | Syncfusion
4+
description: This section explains how to enable and customize drill-down toolbar in the Syncfusion<sup>®</sup> .NET MAUI Sunburst Chart control.
55
platform: maui
66
control: SfSunburstChart
77
documentation: ug
@@ -11,7 +11,7 @@ documentation: ug
1111

1212
The drill-down provides better visualization of hierarchy. Large set of data can be virtualized into minimal views. Each level of the segments can be drilled down. The Sunburst Chart provides animation along with the drill-down support. Double tapping the segment performs the drill-down operation. Toolbar will be enabled on drill-down that helps in performing zoom back and reset operations.
1313

14-
To enable this feature, set the `EnableDrillDown` property to true in [SfSunburstChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html).
14+
To enable this feature, set the `EnableDrillDown` property to true in [SfSunburstChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html). By default, `EnableDrillDown` is set to false.
1515

1616
{% tabs %}
1717

@@ -51,7 +51,7 @@ Both the alignment properties has the following enum types:
5151
<sunburst:SfSunburstChart EnableDrillDown="True">
5252
. . .
5353
<chart:SfSunburstChart.ToolbarSettings>
54-
<chart:SunburstDrillDownToolbarSettings HorizontalAlignment="Center"
54+
<chart:SunburstToolbarSettings HorizontalAlignment="Center"
5555
VerticalAlignment="Center"/>
5656
</chart:SfSunburstChart.ToolbarSettings>
5757
</sunburst:SfSunburstChart>
@@ -63,7 +63,7 @@ Both the alignment properties has the following enum types:
6363
SfSunburstChart sunburst = new SfSunburstChart();
6464
sunburst.EnableDrillDown = true;
6565
. . .
66-
SunburstDrillDownToolbarSettings toolbarSettings = new SunburstDrillDownToolbarSettings()
66+
SunburstToolbarSettings toolbarSettings = new SunburstToolbarSettings()
6767
{
6868
HorizontalAlignment = SunburstToolbarAlignment.Center,
6969
VerticalAlignment = SunburstToolbarAlignment.Center,
@@ -86,7 +86,7 @@ The toolbar's position within the Sunburst Chart can be adjusted both horizontal
8686
<sunburst:SfSunburstChart EnableDrillDown="True">
8787
. . .
8888
<chart:SfSunburstChart.ToolbarSettings >
89-
<chart:SunburstDrillDownToolbarSettings OffsetX="50" OffsetY="100"/>
89+
<chart:SunburstToolbarSettings OffsetX="50" OffsetY="100"/>
9090
</chart:SfSunburstChart.ToolbarSettings>
9191
</sunburst:SfSunburstChart>
9292

@@ -97,7 +97,7 @@ The toolbar's position within the Sunburst Chart can be adjusted both horizontal
9797
SfSunburstChart sunburst = new SfSunburstChart();
9898
sunburst.EnableDrillDown = true;
9999
. . .
100-
SunburstDrillDownToolbarSettings toolbarSettings = new SunburstDrillDownToolbarSettings()
100+
SunburstToolbarSettings toolbarSettings = new SunburstToolbarSettings()
101101
{
102102
OffsetX = 50,
103103
OffsetY = 100,
@@ -123,7 +123,7 @@ The appearance of the drill-down toolbar in the Sunburst Chart can be customized
123123
<sunburst:SfSunburstChart EnableDrillDown="True">
124124
. . .
125125
<chart:SfSunburstChart.ToolbarSettings>
126-
<chart:SunburstDrillDownToolbarSettings IconBrush="White" Background="#2989F9"/>
126+
<chart:SunburstToolbarSettings IconBrush="White" Background="#2989F9"/>
127127
</chart:SfSunburstChart.ToolbarSettings>
128128
</sunburst:SfSunburstChart>
129129

@@ -134,7 +134,7 @@ The appearance of the drill-down toolbar in the Sunburst Chart can be customized
134134
SfSunburstChart sunburst = new SfSunburstChart();
135135
sunburst.EnableDrillDown = true;
136136
. . .
137-
SunburstDrillDownToolbarSettings toolbarSettings = new SunburstDrillDownToolbarSettings()
137+
SunburstToolbarSettings toolbarSettings = new SunburstToolbarSettings()
138138
{
139139
IconBrush = Colors.White,
140140
ackground = new SolidColorBrush(Color.FromArgb("#2989F9")),

0 commit comments

Comments
 (0)