Help

The Community will be undergoing maintenance from Friday February 21 - Friday, February 28 and will be "read only" during this time. To learn more, check out our Announcements blog post.

multi-series chart and dual y-axes with record picker

Topic Labels: Data Interface Designer
133 1
cancel
Showing results for 
Search instead for 
Did you mean: 
danielI
4 - Data Explorer
4 - Data Explorer

Trying to get my dashboard interface to show a graph with multiple Y axis that links to a record picker. So far, I've only been able to get 1 Y axis, I can get multiple Y axis when I don't use a record picker though.

danielI_0-1739377338373.png

danielI_1-1739377371932.png

 

 

1 Reply 1
ashley_24
6 - Interface Innovator
6 - Interface Innovator

Hmm, you are correct that it doesn't appear you are able to have multiple axes when using a record picker. If having multiple axes is important to you, I suggest using the "dashboard" interface layout and utilizing dropdown filter options to allow the user to select the corresponding timeframe they need. It looks like from your screenshots that you have a desire to allow people to select the month and year. You can achieve this by creating a formula > single select output field for date with the formula: 

DATETIME_FORMAT({date field name}, 'MMMM') & " " & DATETIME_FORMAT({date field name}, 'YYYY').
This will allow you to create the dropdown filter in the dashboard view to accomplish virtually the same thing, with the multiple axes. Hope this helps!