Questions tagged [drilldown]

To drill down means to move from summary information to detailed data by focusing in on something. In a GUI-environment, "drilling-down" may involve clicking on some representation in order to reveal more detail.

From Wikipedia's article on drill down:

To drill down through a series of folders, for example, on a desktop means to move through the hierarchy of folders (from the top downwards) to find a specific file or to click through drop-down menus in a GUI. Clicking on an item moves you to a level of greater detail. When an online user accesses more and more pages of the website, he or she may delve deeper into the content of the site. As a web-surfer goes further into a website, he or she goes deeper into the back pages and thus deeper into data. (Of course, he or she could also begin—for example via an external search engine—at a detailed view, and drill up to the front page of the site.)

Drilling down through a database involves accessing information by starting with a general category and moving through the hierarchy: from category to file/table to record to field. When one drills down, one performs de facto data analysis on a parent attribute. Drilling down provides a method of exploring multidimensional data by moving from one level of detail to the next. Drill-down levels depend on the data granularity.

372 questions
1
vote
1 answer

How to add a column link to material-ui table and redirect to summary detail page using column link id

I am working Material-UI tables, such as the following basic table here but I have added an id column at the beginning. Assuming I have this basic table example at the route localhost:3000/basic-table within my React app, how can I take the below…
ArthurJ
  • 777
  • 1
  • 14
  • 39
1
vote
1 answer

HotChocolate GraphQL (.NET Core) How to drill down nested Classes

I am new to GraphQL. I am testing HotChocolate following a simple article and seems that was easy to drill down to nested classes using [UseSelection] annotation in the Resolvers, however, I am using V11 and I realize did no work anymore, I would…
Paulo Amf
  • 360
  • 3
  • 14
1
vote
1 answer

Click event in drill down plots

I'm trying to use click events using the plotly_click option in RShiny. What I want to do is: On clicking the plot, the dataset corresponding to the click event is displayed. So when I click on 'Office Supplies' in categories on the plot, dataset…
1
vote
1 answer

Highcharts drilldown treemap legend

I'm working on a drilldown treemap and the render is exactly what I want. My problem is about the legend. I used colorAxis for the drilldown level and I would like to hide the legend on the main level (one color by tile) but display the graduate…
vegaelce
  • 115
  • 6
1
vote
1 answer

Kibana 7.10 Dashboard Drilldown

I've been playing with the new Create Drilldown feature available in Kibana 7.10 dashboards. On the parent dashboard I have a stacked horizontal bar chart: The y-axis (i.e. bar label) is a "Site Name" The x-axis (i.e. bar length is count of…
Andy Heron
  • 11
  • 2
1
vote
2 answers

Is there a way to custom sort records in a Google Data Studio table?

Is there a way to custom sort rows in a Google Data Studio table with drill downs enabled? For example, is there a way to order the table with rows 3,5,1 etc... I tried adding a custom field Sort ID before drill down Item 1 using a case statement…
1
vote
1 answer

Highcharts Angular - Sunburst implementation

Im trying to implement a sunburst chart where i have two different data sources. I have an example of what im trying to achive in the below codesandbox. https://codesandbox.io/s/pedantic-visvesvaraya-1vsoh?fontsize=14&hidenavigation=1&theme=dark Im…
Anand
  • 13
  • 5
1
vote
0 answers

Highcharts Issue in drilldown in dual axis eg. Bellcurve Chart etc

In a dual axis chart on a point drill down I am still able to see the bellcurve which was on the first level. Is this the expected behavior if yes then how can I stop showing the parent series on drilldown. In case of no, let me know how can i fix…
Roohafza
  • 79
  • 1
  • 7
1
vote
1 answer

Why does std::vector::iterator::operator-> only drill down one level?

This code fails to compile: void foo(vector>> bar) { bar.begin()->first; } What's the problem here? Shouldn't operator-> drill down until pair?
1
vote
1 answer

Highcharts drilldown doesn't work for 3+ levels

I want to have highchart drilldown with more than 3 levels. Also, I have tried referring below articles, but I was not able to figure out. Drilldown multiple levels Highchart Highcharts - drill down to multiple series I could do only till 3 levels.…
foodiepanda
  • 128
  • 1
  • 14
1
vote
1 answer

Drill down in Google Geo chart

I have implemented google Geo Chart in my react application, Now on click of a particular region or country i want to drill down to that particular region in the view. One thing that i can think of is to change the value of "region" parameter…
1
vote
0 answers

Data driven(D3.js) vertical grouped bar chart with tooltip, clickable legends and brush facilities

I want to build a chart using D3.js using vertical bar chart on provided data and selected filters. Vertical grouped bar chart Legends Tooltip Brush and zoom Drill down I have already added the filter for legends and tooltip, but facing issues…
1
vote
1 answer

Highcharts xrange refuses to exhibit drilldown behavior

Attempting to create a second level of data in the xrange charttype of highcharts does not behave as expected see jsfiddle https://jsfiddle.net/bo8eL42v/10/ and highcharts documentation…
Poncher
  • 53
  • 6
1
vote
1 answer

Highcharts solidgauge with drilldown

I'm trying to do a drilldown of a solidgauge as the first level to a bar chart as a second level, but it does not work out well. Can you help me please? #container { margin: 0 auto; max-width: 400px; min-width: 380px; }
1
vote
1 answer

Hierarchical SQL Queries, SSRS 2008, and Summing Columns

I am building an SSRS report and am having a bit of trouble figuring out how to implement it. First, here is the basic structure of the data: Level 1a Level 2a Level 2b Level 2c Level 3a Level 1b Level 1c In the database, each level has an…