Hello Denis. You could use the component below to implement this functionality. thanks.
xmlns:m="sap.m"
xmlns="sap.ui.table"
xmlns:micro="sap.suite.ui.microchart"
xmlns:app="http://schemas.sap.com/sapui5/extension/sap.ui.core.CustomData/1"
xmlns:html="http://www.w3.org/1999/xhtml"
<Column width="180px" hAlign="Left" vAlign="Top" minScreenWidth="Tablet" demandPopin="true" popinDisplay="WithoutHeader" mergeDuplicates="false" filterProperty="Area"> <m:Label text="Test2" /> <template> <m:FlexBox height="100px" width="170px"> <micro:ComparisonMicroChart scale="M" app:name="comparison" press="press" isResponsive="true"> <micro:data> <micro:ComparisonMicroChartData title="Americas" value="10" color="Good" /> <micro:ComparisonMicroChartData title="EMEA" value="50" color="Good" /> <micro:ComparisonMicroChartData title="APAC" value="-20" color="Error" /> </micro:data> </micro:ComparisonMicroChart> </m:FlexBox> </template> </Column>
Add comment