I have data in a SP
external list
, one of the fields holds a date. I would like to visually present this data using Visio
Services.
I have drawn the visio diagram using visio
2013
and using visio
webpart
I was able to put in the SharePoint 2013 page, but the challenge is now we need to filter the date in the list and expecting the visio diagram to change the data based on the date.
For example : Below is the data which is present in the list and being used for visio for its diagram. Now using a date filter if we filter the Date as 2/23/2015, then we need to change the count for only for 'F'. based on the date filter the data in the visio needs to be filtered. How we can achieve this?
Name | Region | Count | Date |
A | Z | 1 | 1/23/2015 |
B | Y | 2 | 1/24/2015 |
C | X | 6 | 1/25/2015 |
D | W | 4 | 1/24/2015 |
E | V | 3 | 1/23/2015 |
F | U | 5 | 2/23/2015 |
C | X | 4 | 1/25/2015 |
D | W | 4 | 1/23/2015 |
E | V | 3 | 2/23/2015 |
F | U | 5 | 2/24/2015 |
B | Y | 2 | 1/24/2015 |
C | X | 5 | 1/23/2015 |
D | W | 8 | 1/25/2015 |
A | Z | 1 | 2/23/2015 |
B | Y | 6 | 1/23/2015 |
C | X | 3 | 1/24/2015 |