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
2
votes
1 answer

How to create a drill-down report called from Java?

I have created Balances report using Jaspersoft Studio. I have also created hyperlink on a field in this report with below properties: Link Type: ReportExecution Parameters: _report The value of above parameter is "GLLedger" which is another jasper…
Moazzam
  • 397
  • 1
  • 8
  • 23
2
votes
1 answer

Drilldown for grouped column chart in highcharts

I'm trying to make drilldown for a grouped column chart in highcharts. My chart is here: $(function () { // Create the chart $('#container').highcharts({ chart: { type: 'column' }, title: { …
Md Mahfuzur Rahman
  • 2,319
  • 2
  • 18
  • 28
2
votes
1 answer

Highcharts - column chart with drilldown to waterfall

I have a strange behavior with my drill down to a waterfall chart. My middle column which is a negative value is not positioned on the top, instead it is going from zero down. I have taken the exact same configuration and applied it to a first level…
mr carl
  • 571
  • 2
  • 6
  • 20
2
votes
1 answer

Bootstrap Drilldown Menu: Jump back to main menu event

I'm using the following component: http://www.jqueryscript.net/menu/Lightweight-Drilldown-Menu-Plugin-with-jQuery-Bootstrap.html I want to adjust the some built-in functionality: when an item from the lowest level is clicked, the menu closes. when…
Atoq
  • 33
  • 7
2
votes
1 answer

Drilldown in two steps, multiple choice in Highcharts

I'm a newbie in this community so I'll try my best. I'm trying to perform a drilldown using Highcharts in a pie chart. The fact is that I want to develop some code that allows me to: In a first click select multiple charts (or slices from a pie) In…
Ferran Buireu
  • 28,630
  • 6
  • 39
  • 67
2
votes
2 answers

how to remove scroll bar in drill down highchart

Below is my drill down chart, I want to remove the scroll bar while drill down event, and need the scroll bar again when we do drill up event. I tried below api's but it didn't…
jquery beginner
  • 291
  • 1
  • 3
  • 9
2
votes
1 answer

How to fill dynamic json value in drill down highchart

I'm trying to populate below json dynamically in drill down highchart, but data is not populating as expected. I would like to fetch all user and put it in graph and in the drill down of each user i've to show success,error,cancel, visit,enroll,…
jquery beginner
  • 291
  • 1
  • 3
  • 9
2
votes
1 answer

Highcharts multiple column chart with drilldown, correct formatting of drilldown axes

I have a HighCharts chart with two series plotted. Each data point can be drilled down to show a sub-plot: http://jsfiddle.net/9phfzewj/21/ The problem I have is that when I click on an x-axis label I am taken to a sub-plot with two series shown.…
David
  • 327
  • 2
  • 9
2
votes
1 answer

Highcharts xAxis shows labels from drilldown on drillup

When I click on district it shows villages on drilldown but when i drillup it shows xAxis data along with labels from drilldown i.e. village name with District name. I wish to display only the district names on drillup and only the villages name…
2
votes
1 answer

Highmaps tooltips in drilldowned map of Slovakia

I would like implemented names of town (Trencin, Nemsova, Ilava... ) and their tooltips together. Click on green TN block in map and check it. I try some solutions, but: tooltip overllaps names of towns: useHTML: true, …
jezrael
  • 822,522
  • 95
  • 1,334
  • 1,252
2
votes
0 answers

Excel powerpivot data drill down using filtered data

I created a powerpivot data model for current sales orders. I have 6 columns at the end of the dataset that indicate an attribute of the order (example - if the order has a ship date, I have a 1 in the SHIPPED column). I created a pivot table that…
Andrew Corson
  • 93
  • 3
  • 11
2
votes
2 answers

Excel VBA PivotTable ShowDetails

I have a pivot table that contains a number of Expand/Collapse buttons related to Customer, Year, and Quarters all of which have vba behind them to .Showdetails as appropriate. These individual sets of code work. However, I'm trying to make my code…
S8Tony
  • 85
  • 1
  • 1
  • 9
2
votes
1 answer

Change chart type with drilldown series

I have an issue regarding with my drilldown charts.. Here is the link: http://jsfiddle.net/sSLnn/3/ chartfunc = function() { var column = document.getElementById('column'); var bar = document.getElementById('bar'); var pie =…
user3204760
  • 825
  • 1
  • 9
  • 14
2
votes
1 answer

Drilldown and title update in Highcharts pie

I'm working on an Highchart pie. When I click on a slice I'd like to have a drilldown and to update my chart's title. My drilldown is working fine. So is my method to update the title. However when I try to update and to drilldown on the same click…
Florent Gz
  • 934
  • 1
  • 10
  • 22
2
votes
1 answer

Hyperlinked column in a Highcharts drilldown

How would I modify the demo chart "Column with Drilldown" so that a column in the drilldown chart is a hyperlink to an arbitrary web page (not to another drilldown)?
1 2
3
24 25