Drill down of DashBoards using BIRT - spagobi

drilldown of charts can be done by considering the parent chart and child chart by relating them with some common parameter. But how can we drilldown the dashboard, as it consists of different charts in a single document?

It is possible to create associations between different charts. When you click the association Button (on the top right corner), you are able to connect different columns with each other.
After you confirm this association you can drill down through both charts with one click.

Related

Use hierarchical tables in SlickGrid

We have a request from our designers to build tables something like this, with rows that expand to show essentially another sub-table underneath. In KendoUI documentation, this is called "Hierarchy."
We use SlickGrid v2.3 with a few additional plugins. We currently have tables with a similar row expand/collapse like this: https://mleibman.github.io/SlickGrid/examples/example5-collapsing.html . That does not allow for a completely different set of columns in the sub-table.
The question is, can this be done in SlickGrid or not?
It might be hard to do with current SlickGrid, there's no code that handles the hierarchical part itself so that would be lot of work to implement in SlickGrid. However it is implemented in Slickgrid-Universal, which is a wrapper on top of SlickGrid. You can see Example 5 and Example 6 which shows 2 types of Tree Data grids (hierarchical or parentId refs). We use it in production for a project that we have. Also note that this is not a grid within a grid, it's rather an expand/collapse the same as what you found in example5-collapsing.html, the only differences with SlickGrid is that Slickgrid-Universal has the code to deal with hierarchical data (filtering/sorting) while SlickGrid itself doesn't and also another nice to know thing is that expand/collapse is actually using data filtering behind the scene and you can see that in the total items displayed when you have the footer enabled.
Please note that I'm the author of Slickgrid-Universal and also a major contributor to SlickGrid as well
At the moment, it can't be done. In order to achieve its speed, Slickgrid enforces a fixed row height and a single scrolling canvas. It's just a different approach than used by HTML display grids.
You could put together a workaround using mutiple slickgrids or an embedded slickgrid in a group row, I suppose, but it would be messy.
One thing I have done is develop a SlickCombo, which is essentially a grid presented as a multi-column dropdown. It's a full grid and can offer editing.
That's probably as close as you'd get.
A comment: the MLeibman repo is long dead - you should be using: https://github.com/6pac/SlickGrid

Filter across pages in Google datastudio

I have a multi page report with Page 1 having a Table chart with filter interactions ON. When I click on a row in this Table chart, I need my other pages also to get filtered based on this row selection.
If I make this table chart report-level, then this table chart will be visible in other pages which I do not want. What is the best possible way to solve this problem?
An alternative approach is to use a Filter Control (set to Report-level) instead of a Table; additionally, a default selection could be set.
Google Data Studio Report and a GIF to elaborate:

OBIEE 12c: Clickable pie charts

As a first time OBIEE user, I've built an analysis containing a pie chart and added it to a dashboard. I want to be able to click on a slice of the pie chart and it should open a new page or analysis. I tried using Action Links but that seems to be working only for the column heading of a table but not for table contents or in my case the pie charts. Is this a possibility in OBIEE 12c?
Yes. Action links will work on the value too. Check out the documentation and the embedded video: https://docs.oracle.com/middleware/12213/biee/BIEUG/GUID-63576665-7BFE-4D1E-ABB9-51B8AAFBB940.htm#GUID-63576665-7BFE-4D1E-ABB9-51B8AAFBB940

Static List in Kibana 4

I would like to create a static list on Kibana Dashboard.
For example, a pane displaying clickable region names. So when I click on a region, rest of the visualizations change dynamically.
I am looking for something like 'Metric' visualization but for text data and clickable.
Is there a way to do this?
We do something similar, not fully static, but you can create a Data Table visualization (in Kibana4).
On that table, filter by the logs that interest you (with the metric types for example) and that will create a row for each metric type. Add that table visualization to the dashboard where you need the 'clickable filter'.
Then, clicking a row in that table will filter the entire dashboard based on that specific metric-type.

Store App Dashboard: GridView and Multiple Charts

I'm working on a Store app that consists of several charts. I've already developed the charts and have them rendering using the chart control in the various forms.
I have been asked to bring these together in an app that allows the user to scroll left and right through each of the charts.
Every example I have found for using a GridView data binds the content of the GridView to item templates.
What I'm trying to get my head round is how I could please these chart controls directly in to a GridView.
Any help would be greatly appreciated.
Cheers,
Roy
As per my understanding of the question you need to have charts as items in a grid view.
If this is what you want, I have dome this before using charts from 3rd party toolkit.
You need ( may be variable sized) templates with each item having a different template of its own.
You need a items list with data for all the charts.
Then upon runtime you need to assign the template to each item.

Resources