How can I add multiple y-axis to a Stacked Column Chart from SAPUI5 VizFrame?
I'm only able to find the dual_stacked_column
vizType that I can use, which adds two columns for each dimension. I need to have three in my case.
<viz:feeds>
<vizFeeds:FeedItem uid="valueAxis" type="Measure" values='Milk Current Year,Sugar Current Year,Tea Current Year'/>
<vizFeeds:FeedItem uid="valueAxis2" type="Measure" values='Milk Previous Year,Sugar Previous Year,Tea Previous Year'/>
<vizFeeds:FeedItem uid="categoryAxis" type="Dimension" values="Quarter"/>
</viz:feeds>
It's not possible to simply add a third one, as that's being ignored:
<vizFeeds:FeedItem uid="valueAxis3" type="Measure" values='New Value'/>
This is programmed using the XML View until now, but JS View is no problem either, as long as there's a solution.