Zooming in ASPNET Core SunburstChart

21 Oct 20211 minute to read

Sunburst chart provides zooming (drill down) experience with animation for both mouse and touch enabled devices. It allows you to Virtualize large sets of data into minimum data view. The zooming is achieved by using the property of e-sunburstchart-zoom-settings

The following code shows how to initialize the zooming.

  • CSHTML
  • <ej-sunburstchart id="SunburstChart" >
       <e-sunburstchart-zoom-settings enable="true"></e-sunburstchart-zoom-settings>
      <ej-sunburstchart>

    Zooming toolbar

    By default, zooming toolbar will be enabled while zooming the segment. It contains both back and reset option.
    You can align the zooming toolbar position by using toolbar-horizontal-alignment and toolbar-vertical-alignment property.

  • CSHTML
  • <ej-sunburstchart id="SunburstChart" >
       <e-sunburstchart-zoom-settings enable="true"toolbar-horizontal-alignment="@SunburstHorizontalAlignment.Left">
       </e-sunburstchart-zoom-settings>
      <ej-sunburstchart>

    Sunburst chart Zooming2