I'm using Holoviews to construct a dashboard of charts. Some of these charts have percentages in the y axis where as others have sums/counts etc. When I try to output all the charts I have created to a html file, all the charts change their y axis to match the axis of the first chart of my chart list.
For example:
- Chart 1 is a sum, values go from 0 to 1000
- Chart 2 is a %
- Chart 3 is a %
when I combine these charts in holoviews using:
- Charts = Chart 1 + Chart 2 + Chart 3
The y axis of charts 2 and 3 become the same as chart 1.
Does anyone know why this is happening and how I can fix it so all the charts keep their individual axis pertinent to what they are trying to represent.
Thank you!