Navigate from a slice of a pie chart to another pie chart - powerbi

I have a general pie chart showing the number of emails sent by application like below :
I want when clicking on the CCube slice for example, I go to another pie chart where I find number of the emails for the application CCube with failed and sent status like below :

The solution I've used for this sort of thing is to use the drill-down donut chart custom visual instead of the default pie chart visual. It's pretty nifty.

Related

Oracle APEX 5.0: Charts not displaying properly

I'm using the D3 Line Chart plugin to create charts in my application. When I create one chart, it works fine but when I add a second chart the second chart doesn't appear and the legend from the second chart appears in the first chart too. Not sure why the 2nd chart is getting merged into the first one.
Turns out they both have the same Static ID which caused this issue.

How to show and hide the pie chart in Power BI

I have a requirement where I need to create the Pie Chart for all available EventTypes. For example I have following EventTypes available in my system.
Buy
Sell
Hold
Buy Back
Now if a company has only two types of EventTypes like "Buy" & "Sell" then Power Report should show only two charts and if another company has three EventTypes like "Buy", "Sell" & "Hold" then same Power BI report should show the three pie charts.
I have two approaches to achieve this.
Approach 1: Create pie chart for all possible EventTypes and show and hide the pie chart based on the EventTypes available for given company. So how I can show and hide the pie chart in this approach.
Approach 2: Thinking to create the pie chart on the fly (If possible in PowerBI) as I could have done many time in SSRS using list. If possible how can I do this?
Approach 1 should work OK, I think.
Create a chart for each of the four EventType values and write measures or use filters such that the chart values return BLANK() for non-existing EventType values.

How to overlay a line plot over a bar graph in APEX?

Right now I have a stacked bar graph and a line graph on one page using apex 'create a region' functionality. I'd like to combine these to one chart. I am thinking if you pehaps create a custom xml code in order to do so, but i'm not sure if that's the right direction to go to. Any help in this regard is appreciated.
No need to fiddle with XML. Create a second series in the chart using the SQL of your second chart and set the 'Series type' attribute to 'Line'.
Check "Multiple Y-Axis" in the display settings to plot your second series with a separate set of Y values. This means the number range offered in both series can be different scales. This can rescale as you show/hide specific series, as offered in one of the Legend properties.
Here is a link to a sample application by Hilary from the APEX team, plenty of examples in there regarding what is possible:
https://apex.oracle.com/pls/apex/f?p=36648

how to show no data message in google bar chart

I am using google bar chart for my project, it is working correctly with data, but if no data exists, the bar chart is showing with empty horizontal lines. How to show no data message as in google pie chart, if there is no data exists?
Thanks in advance.

Display value labels on multi-series google column charts

Is anyone know wether there is a way to display the values of a multi-series google column chart over each columns ?
Muhammad Tayyab Shei succeded in making it, but for a single-serie : see put labels on top of inside bar in google interactive bar chart
Since the annotation role is not supported for column charts yet, it cannot be done with a multi-column chart (the single-series version works by using a combo-chart which allows annotations for the line chart portion).
The easiest way to implement this would be to create a javascript function to either display the tooltips full time, or to draw custom tooltips and turn them on (using HTML-enabled Tooltips, for instance).