Box and Whisker chart Data Label - powerbi

Using this box and whisker chart by 'DataScenarios'
How an i add a sampling text to the chart below? (Example: Sample A, B, C

Related

PowerBI bar chart that filters legend results

How can I set a bar chart to only show legend items that have results when I run a filter?
e.g. I filter search someone's name who has data points for 5/15 categories. I would like my bar chart to only show the legend of those 5 categories and exclude the other 10. Say I then filter search a different person's name who has data points for a different 5 categories it will only show visualise those results and exclude the other data?
TIA!

Only displaying "tallest" bars in bar chart

I am trying to create a clustered bar chart in PowerBI Desktop, where only the N "tallest" bars are displayed.
My dataset consists of a small number of rows but a large number of columns.
I have tried the following:
Transform the table in absolute values (since I am interested in bar height, not negative/postive strictly)
Try to apply the "top N" filter on the axis datafield
However, nothing happens. The chart currently looks like this (without applying the transformation of the absolute value): Clustered bar chart
I basically want the same chart, but only display the N tallest bars.
You might have to pivot your table, so you have a "column name" field and a "value" field.
Then you need to use the TOP N on the Legend field, like this:
Filters:
Result:

Oracle APEX - customizing bar chart

Is it possible to make a bar chart a double y-axis?
I have a bar chart with 4 bars, generated by the query, returning 4 rows.
Is there a way for me to make each bar a different color and on the right-hand side, instead of series name, specify colors along with labels for each bar?
Click on one of the chart series and look for the 'Assign to Y-Axis' attribute
Not how this is next to a 'Color' attribute. You can source this colour from your SQL, substituting your value using the using &COLUMN_ALIAS. syntax.
An example from the sample charts application in the linked form post shows how colour can be row based (with column alias adjusted to match my screenshot)
select a.product_name,
b.quantity,
b.customer,
-- This is the column you're looking for
case when b.quantity > 50 then 'gold'
when b.quantity <= 30 then 'red'
when b.quantity > 30 then 'green'
else 'blue'
end as colour
from eba_demo_chart_products a, eba_demo_chart_orders b
where a.product_id = b.product_id
and customer = 'Store A'

How to make chart ignore filter in matrix headers?

I am trying to make a chart with indicators that are alsoe headers of a matrix. My dataset has 4 variables (Date, Indicators (A,B,C,D), Currency and Value). I have a matrix where the rows are the "Currency", the columns are the Indicators A and B and the values are "Value". In my chart, the x axis is Indicators (C and D), the legend is the "Currency" and the values is "Values". I want to make this chart ignore what is selected in the matrix columns but I need it to be responsive to the matrix rows (currency). I tried some filters but it didn work.
In the Fig 1 (link below) we can see the screen if no filter is selected. And I want to select a currency (row) or a value in the matrix. But if I do it, my chat turns blank (Fig 2) where I want to see the values of C and D for the selected currency.
How can I do it?
All data and pibx are here!
Tks
Look at using the All() function, this restricts filters from affecting your measures

How do I calculate the number of occurrences from Column A, based on value of column B in Power BI

ColumnA ColumnB
A Pass
A Fail
A Pass
B Fail
A Fail
C Open
D Fail
B Fail
B Pass
D Open
E Pass
I need to show each of Column A as a column with the count of values from Column B, in a stacked bar chart:
First bar: 2(Pass)+2(Fail)
Second bar: 1(Pass)+2(Fail)
... and so on.
If you just create a simple measure like this:
Measure = CALCULATE(COUNT('Table'[ColumnB]))
Then select a stacked bar chart from the visualizations pane, and configure like this:
You should get this:
Which I think, is what you are looking for.
Hope that helps!!