Example
I need bar graph like this I attached ,
Where I can update daily price of a product it’s shows only last 6 entries , set by latest date.
Related
I have built a bar graph using tableau for the following data. How to add Total sales (120,150,200,180,140) on top of the each bar in tableau
[The following image has the data and bar graph that I was trying to build]
[1]: https://i.stack.imgur.com/NdA7s.png
Thanks for your help
Hope this helps.
I pivoted the data first to make it easier by working with a single measure.
Go to the data tab and select the Sale A and Sale B measures:
Then hit the dropdown and select Pivot.
Then your data will look like this
Next, you want to set the fields up like this so it mirrors your screenshot.
The SUM(Pivot Field Values) is a table calculation set up as percent of total calculated Table (down).
Then just duplicate your measure by holding Ctrl and dragging to Rows. Make it a label in the Marks section. This will add the total. You just have to play with the axis and format to get it into the place you want from here.
I have created the attached dashboard in powerBI. It is a monthly report. That shows the count of item each month. The dates are in this format 1/1/18, 1/2/18, 1/3/18 that the first day of every month
When I created the report powerBI are skiping one month at interval. See Pix attached.
how can i show all months?
Desired
I believe you'll need to change the "X-Axis" type to "Categorical". It looks like it's defaulting to Scalar, which makes a continuous axis and picks tick marks based on available space.
You could try decreasing the font size of the month labels since Power BI might be avoiding overlap. You could also try shortening the length of the label from MMM-YYYY to MMM-YY.
It is possible to have a time series graph in plotly that when you click a data point in it, it will generate another graph (next to it)?
For example, a graph with the time series of the price of a stock. And when you click the price on a particular date (lets say 10-jun-2017) a new graph appears that has the daily return histogram of that stock until 10-jun-2017.
Thanks!
I have logs with different log levels and I want to design a date histogram like the one at the bottom of the picture :
At a particular date it should show say WARN logs with red and INFO logs above that with blue. Also I don't have log level indexed. But I do have INFO and WARN as saved searches.
As per my understanding you have a field wherein you can search for INFO & WARN and based on these searches, you want to build a stacked histogram as shown above.
The solution for the same is:
Click On Visualize Tab and Select Visualization Type as Vertical Bar Chart.
Select search source as From a New Search.
Then design your visualization by selecting buckets type as X-Axis and aggregation as Date Histogram with the required field such as #timestamp.
Then add sub-buckets as Split Bars and select sub-aggregation as Filters.
Mention the filter value as per search query. For example: log:INFO (In filter1) & log:WARN (In filter2).
You will get the resulting stacked Histogram. Also you can choose the color as required by clicking on the log:INFO label (towards the right of the histogram) and can choose your required color.
I have created one line chart using saiku. When I integrate it to a dashboard , its x-axis fields are getting overlapped. how can I eliminate this issue?
My MDX query is given below.
WITH MEMBER [Measures].[Price] as '([Prices].[Price].CurrentMember.FirstSibling)'
SELECT
NON EMPTY {[Measures].[Price]} ON COLUMNS,
NON EMPTY CrossJoin({[Product Names].[Product Name].[${NAME}]},CrossJoin({[Price Dates].[Date].Members},{[source].[source].Members})) ON ROWS
FROM [MY Cube]
Here in the x-axis the fields showing Product name,Date, and source. I just need date in X-axis but when i point to the point in the line of the graph , there all the three parameters should show.