Select column in bar chart, echarts - bar-chart

Can I select column of bar-chart like pie-chart sector in this demo? https://www.echartsjs.com/examples/en/editor.html?c=pie-rich-text
selectedMode: does not work for me here.

Related

Making Timeline in qliksense

I would like to display a timeline in qlik sense using the Bar Chart Object enter image description hereas follows:
The x-axis represented the months of the year.
The Y-axis represented the years.
The length of the graph will be a date range in the appropriate year and month.
It will look like this:
exaple
How can I do this?
Thanks!
I suggest you use a Pivot Table chart object with a background colour expression set to yellow.
In this example, I calculated the day number of the start date and the duration of the period to be shown in yellow.
The Bar Chart shows the sum of 'DayNumberStartDate' and 'Duration'
Bar Chart

Spotfire - Show top values in stacked bar chart

I have a stacked bar chart that looks like this :
I would like to only show the top 3 bars in terms of value, that is to say the three first bars. I tried to use the Show/Hide feature but it doesn't work as I expected.
For example if I limit to Show top 1 value with the Show/Hide value, i get :
when I expect to also have the orange and blue bars that are stacked in the first picture.
Is there a way to do what I am looking for?
You will have to achieve a dynamic rank and use that to filter out the top 3. Put this rank logic in the hide/show.
It's not clearly given here but in ur dataset you can rank by column on x axis and say rank always less than 3.
I found a better way to do this :
Using the Show/Hide rules of the properties of the visualization, you have to add this rule
DenseRank(Sum([Value]) over (All([Axis.Color])),"desc") <= 3
Then you have to [Axis.Value] in the value input.
3 is the number of bars to have in the bar chart.
[Value] is the column of the Y Axis, in my case I used Count() because my Y axis is (Row Count).
You can find more info at this link : https://community.tibco.com/questions/question-showhide-top-10

Microstrategy bar chart

I have a mysql database table with integer RecordsRead field for example and I can bring this into a grid view and it looks correct. But when I do a bar chart of the values 15, 30, and 45 I get the values at the bottom of my chart but each bar is the same size regardless of value. I expected three different size bars in this case.
Any what might be wrong...

Qlikview - barchart

I want to create bar chart but i don't now how to set dimension and expressions. I have got this table
and I need to create a bar chart to look like this:
I need to have the average result(avgREsult column) on x-axis green color and expressions count(Item) and around green bar to get blue bars that represents pros column and expressions count(item).
Any idea?

How to create 'up-down' bars in SSRS?

In Excel, you can create up-down bars, where the bar appears 'above' or 'below' some other value, with +ve and -ve being different colours
see here for an example: http://peltiertech.com/Excel/ChartsHowTo/StockChartsAndLineChartTricks.html
Is it possible to do this in SSRS, the closest I've seen is candlestick charts
I can use Dundas Chart for Reporting Services if that's any use
[I really misunderstood your question, so I'm massively rewriting this answer.]
The functionality you describe is part of the standard stacked bar chart if you want the values stacked or the standard bar chart if you don't want values stacked.
I created a query of
Select
'Eastern' AS Region,
450 AS UpValue,
-30 AS DownValue
Union ALL
Select
'Middle',
300,
0
UNION ALL
Select
'Western',
400,
-100
Then added a Stacked bar chart and dragged the UpValue and DownValue to Values, and Region to Category.
My results: