Hi Gairik,
I found the solution:
- I added the
xmlns:commons="sap.suite.ui.commons"
in the relevant xml view. - I needed to use the commons tag within the xml...
<commons:ChartContainer></commons:ChartContainer>
It looks like this:
<mvc:View xmlns:html="http://www.w3.org/1999/xhtml" xmlns:mvc="sap.ui.core.mvc" xmlns:sap.ui.core="sap.ui.core" xmlns:sap.ui.layout.form="sap.ui.layout.form" xmlns:sap.ui.layout="sap.ui.layout" xmlns:viz="sap.viz.ui5.controls" xmlns="sap.m" xmlns:commons="sap.suite.ui.commons" controllerName="Dashboard.controller.DashboardMasterView"><App> <pages> <Page title="{i18n>title}"> <content> . . .<commons:ChartContainer></commons:ChartContainer>
So this works fine, thanks for the hint...