How can I make a "Variable Width Column Chart" on Power BI - charts

I'm trying to create this chart on power BI but I don't know how to do it .
Can I have your help please
AND those are the Data used to build the chart
[![DATA][2]][2]

Power BI doesn't have this chart type by default. Your best option is to use a Python or R visual, e.g. like explained by RADACAD:
You can find a Python solution - that you could also use in Power BI - on StackOverflow her: Altair bar chart with bars of variable width?

Related

Combining Cumulative Flow Diagram with trendlines

I am looking for a way to plot a cumulative flow diagram that includes trend-lines on Azure Devops Dashboard. Are there any default / extension widgets that will allow this?
Thank you.
Out of the box, the trend-line feature you're looking for is not available. The Analytics Widgets provided with Azure DevOps can handle the majority of use cases but the Cumulative Flow Diagram doesn't understand the concept of end-date which is what is required to create an ideal trend.
There are other options:
Excel. There is an Office integration for Azure DevOps and if you can get the raw data you want from a basic Query, you can play with the data in Excel
Power BI. By far a better option than Excel because it leverages the analytics views and you can build some pretty amazing views.
Update:
Few additional links:
Creating a Cumulative Flow diagram in Power BI using Azure DevOps Analytics views
Limitations of adding a trendline to stacked-chart visuals is described as:
The following visuals can use only a constant line from the Analytics pane:
Stacked area chart
Stacked bar chart
Stacked column chart
Waterfall chart
100% Stacked bar chart
100% Stacked column chart
The following visuals can use a trend line if there's time data:
Area chart
Clustered column chart
Line chart
Line and clustered column chart
Scatter chart
One power-user has suggested that you could create a line chart with the same synchronized axis and overlay it on top. I don't fully understand how you can have a trend-line for stacked data, so this approach would only work if the trendline is for the bottom unstacked column.

How to show percentages on the pie chart in Tableau, as opposed to off of it?

In Tableau Public 10.4, I am trying to find the setting that allows me to move the percentages of the following pie chart on to the slices, versus off of them (as they currently are). Is there a way to do this?
Thanks!
You could do it manually:
http://onlinehelp.tableau.com/current/pro/desktop/en-us/annotations_marklabels_move.html
Or do it a hacky way if you want it 'automatically:
https://community.tableau.com/thread/123584

which is an alternate chart for sankey diagram in tableau

I have been trying to visualise a sequence chart(flow) in tableau using sankey chart. is there any workaround for sankey? if there is an workaround suggest a good visualisation.
You can use heatmaps with source/ target in rows and columns and the flow value be represented in the cell.
Alternatively, you can stick with tableau for sankeys. I have done that and it adds immense value to develop overall storyline.

Create Stacked Area Combined with Line Chart in Tableau

I'm having trouble creating a chart that combines a line chart with a stacked area chart in Tableau Public. I can create the line chart in Tableau, but after that, I don't know how to proceed. Attached is the chart I created in Excel that I am trying to recreate in Tableau.
Line + Stacked Area Chart
Thanks.
Make your chart a duel axis chart - to do this you must have at least 2 measures on your shelf - click on the right most measure a select 'Duel axis'. Once you've done this, you'll see that each measure has it's own tab on the Marks shelf, which means you can set different mark types on each - for example one measure can be a bar chart and the second can be a line graph.
Hope that helps,
Ben

how to create Line chart using chart control in visual studio 2008

I downloaded the MSchart.exe for visual studio 2008 version..
when ever i choose the chart control it shows the bar chart only but i want to implement in line chart with X and Y-axises.
consider On y-axis the values are in mm from 1 to 1400 value range.On x-axis date/time.
I am novice in this chart control how can i create line graph using chart control in webforms?
any suggestion to do it!?
After you have added the series,
series.ChartType = SeriesChartType.Line;
properties --- series --- chart type --- good luck :)