Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9128247
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T07:28:14+00:00 2026-06-17T07:28:14+00:00

I have Drilled the Column chart. & Now I want to Drill down the

  • 0

I have Drilled the “Column chart”.
& Now I want to Drill down the “Pie chart”

my code for showing Pie chart is as below,

$(function () {
    var chart;
    $(document).ready(function() {
        chart = new Highcharts.Chart({
            chart: {
                renderTo: 'container',

            },
            title: {
                text: ''
            },
            tooltip: {
                pointFormat: '{series.name}: <b>{point.percentage}%</b>',
                percentageDecimals: 1
            },
            plotOptions: {
                pie: {
                    allowPointSelect: true,
                    cursor: 'pointer',
                    dataLabels: {
                        enabled: true,
                        color: '#000000',
                        connectorColor: '#000000',
                        formatter: function() {
                            return '<b>'+ this.point.name +'</b>: '+ Math.round(this.percentage) +' %';
                        }
                    }
                }
            },
            series: 
                [{
                   type:'pie',
                    data: model.mixchart

                }]
});
});

});

How can I do drilldown in this ?

After Drilldown It should show the Pie chart only. So what should I do for that in the code abve?

At least just Give me some reference links for drilldown in Pie chart so that I can Prefer that one.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T07:28:15+00:00Added an answer on June 17, 2026 at 7:28 am
    <script type="text/javascript">
    
             var chart;
             $(document).ready(function() {
                chart = new Highcharts.Chart({
                   chart: {
                      renderTo: 'container',
                      backgroundColor: '#e2dfd3',
                      plotBackgroundColor: null,
                      plotBorderWidth: null,
                      plotShadow: false,
    
                   },
                   //credits for highcharts
                   credits: {
                           enabled: false
                      },
                   title: {
                      text: 'Country/Region',
                   },
                   tooltip: {
                      formatter: function() {
                         return '<b>'+ this.point.name +'</b>: '+ this.y +' %';
                      }
                   },
                   plotOptions: {
                      pie: {
                         borderWidth: 0, // border color control
                         size: '80%',
                         allowPointSelect: true,
                         cursor: 'pointer',
                         point: {
                            events: {
                               click: function() {
                                  var drilldown = this.drilldown;
                                  if (drilldown) { // drill down
                                     setChart(drilldown.name, drilldown.categories, drilldown.data, drilldown.color);
                                  } else { // restore
                                     setChart(name, categories, data);
                                  }
                               }
                            },
    
                         dataLabels: {
                            enabled: true,
                            color: '#000', //label colors
                            connectorColor: '#000', // connector label colors
                            formatter: function() {
                               return '<b>'+ this.point.name +'</b>: '+ this.y +' %';
                            }
                         }
                      }
                   },
                    series: [{
                      type: 'pie',
    
                      name: 'Country/Region',
                      data: [
                         {
                            name:'United States',
                            y: 45.0,
                         },{
                            name:'Germany', 
                            y: 26.8
                         },{
                            name: 'France',    
                            y: 12.8,
                            sliced: true,
                            selected: true,
                            /*drilldown: {
                                name: ['Disney'],
                                categories: ['2001', '2002', '2003','2004','2005','2006','2007','2008','2009','2010','2011'],
                                data: [32591, 29256, 28036, 27113, 26441, 27848, 29210, 29251, 28447, 28731],
                                color: colors[12] 
                             },*/
    
    
    
    
                         },{
                            name:'Japan',
                            y: 8.5
                         },{
                            name:'United Kingdom',
                            y: 8.5
                         },{
                            name:'Switzerland',
                            y: 8.5
                         },{
                            name: 'South Korea',
                            y: 6.2
                         },{
                            name:'Italy',
                            y: 6.2
                         },{
                            name:'Canada',
                            y: 0.7
                         },{
                            name:'Finland',
                            y: 0.7
                         },{
                            name:'Netherlands',
                            y: 0.7
                         },{
                            name:'Spain',
                            y: 0.7
                         },{
                            name:'Sweden',
                            y: 0.7
                         }
                      ]
                   }]
                   }/**/
                });
             });
    
          </script>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am relatively new to PHP. I have drilled down a couple of levels
Have the following code: $(#blogs).mouseover( function () { $(this).addClass(hover); $(#home).removeClass(hover); $(#homepages).removeClass(hover); $(#apps).removeClass(hover); $(#facebook).removeClass(hover); $(#kontakt).removeClass(hover);
When I try to drill down into a cube in our client application, I
Have a simple form that has a PictureBox in one location. I want to
Have two tables say ABC and XYZ and contain one column which data will
I have a table using a table sorter plugin that is getting drilled out
I have a table being drilled out with PHP in a recorders. I am
Have written all the code in a silverlight class library (dll) and linked this
I have been recently drilled in a couple of interviews about Hashtables and when
Have: [DllImport(OpenAL32.dll)] static extern void alcOpenDevice(char*[] devicename); Wanna send the name to this function

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.