
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Percentage increment in stacked chart
Hi Team,
I need percentage increment in stacked graph like in sanpshot you can see in 2017 there were 115 items in list in 2018 it becomes 121 so i need percentage increment like 121/115*100 which is 5 percentage increment to be shown in between two 2017 and 2018 .
Dimensions is calender year
Measure is count of items in list with total at top

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi, there is no snapshot.
Try using Below(), Above(), Before() or After() to access other rows/columns Values
Round((Sum(Value)-Above(Sum(Value)))/Above(Sum(Value))*100)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
PLS FIND SCREENSHOT

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Ok, I don't think you can set a % between those two bars with default Sense chart, maybe there is an extension that allows to make that but I don't know.
A workaround can be to set the percentage as text in title, subtitle on footpage note like:
='Increase of ' & Num((Sum({<Year={$(=Max(Year))}>}Val)-Sum({<Year={$(=Max(Year)-1)}>}Val))/Sum({<Year={$(=Max(Year)-1)}>}Val), '0%')

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
thanks but thisis vizlib graph so not sure where to write expressions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Every object has a common area, not sure if its called 'Layout' en english (in spanish is 'Aspecto'). There you can set title, subtile and/or footpage notes.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
thanks Marin but its showing percentage on each cube of bars not on total what i need is percentage change from 115 to 121 which is 5 % increment . Suppose if ithe toal count reduces from 115 to 110 then change should show in negative
115 and 121 is total count of items in year 2017 and 2018

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi, my first answer was when there isn't any snapshot, after the snapshot I said that I don't know how to set a different calculation for bars total in Sense, and that a workaround can be setting it in title, subtitle or footnote.
https://community.vizlib.com/support/solutions/articles/35000112375-vizlib-bar-chart-appearance
Another workaround can be setting it in axis label using a calculated dimension (sample attached)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks 🙂
