Skip to content

Commit d6a0c3f

Browse files
commit
1 parent 076432c commit d6a0c3f

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

MAUI/SunburstChart/DrillDown.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ 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.
14+
To enable this feature, set the `EnableDrillDown` property to true in [SfSunburstChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html).
1515

1616
{% tabs %}
1717

18-
{% highlight xml %}
18+
{% highlight xaml %}
1919

2020
<sunburst:SfSunburstChart EnableDrillDown="True" >
2121
. . .
@@ -34,7 +34,7 @@ this.Content = sunburst;
3434

3535
{% endtabs %}
3636

37-
## Toolbar alignment
37+
## Toolbar Alignment
3838

3939
The vertical and the horizontal alignments of the toolbar can be customized using the `VerticalAlignment` and `HorizontalAlignment` properties, respectively.
4040

@@ -46,7 +46,7 @@ Both the alignment properties has the following enum types:
4646

4747
{% tabs %}
4848

49-
{% highlight xml %}
49+
{% highlight xaml %}
5050

5151
<sunburst:SfSunburstChart EnableDrillDown="True">
5252
. . .
@@ -81,12 +81,12 @@ The toolbar's position within the Sunburst Chart can be adjusted both horizontal
8181

8282
{% tabs %}
8383

84-
{% highlight xml %}
84+
{% highlight xaml %}
8585

8686
<sunburst:SfSunburstChart EnableDrillDown="True">
8787
. . .
8888
<chart:SfSunburstChart.ToolbarSettings >
89-
<chart:SunburstDrillDownToolbarSettings OffsetY="100" OffsetX="50"/>
89+
<chart:SunburstDrillDownToolbarSettings OffsetX="50" OffsetY="100"/>
9090
</chart:SfSunburstChart.ToolbarSettings>
9191
</sunburst:SfSunburstChart>
9292

@@ -99,8 +99,8 @@ sunburst.EnableDrillDown = true;
9999
. . .
100100
SunburstDrillDownToolbarSettings toolbarSettings = new SunburstDrillDownToolbarSettings()
101101
{
102-
OffsetX = 100,
103-
OffsetY = 50,
102+
OffsetX = 50,
103+
OffsetY = 100,
104104
};
105105
sunburst.ToolbarSettings = toolbarSettings;
106106
this.Content = sunburst;
@@ -109,7 +109,7 @@ this.Content = sunburst;
109109

110110
{% endtabs %}
111111

112-
## Toolbar customization
112+
## Toolbar Customization
113113

114114
The appearance of the drill-down toolbar in the Sunburst Chart can be customized using the following properties
115115

@@ -118,7 +118,7 @@ The appearance of the drill-down toolbar in the Sunburst Chart can be customized
118118

119119
{% tabs %}
120120

121-
{% highlight xml %}
121+
{% highlight xaml %}
122122

123123
<sunburst:SfSunburstChart EnableDrillDown="True">
124124
. . .

0 commit comments

Comments
 (0)