cancel
Showing results for 
Search instead for 
Did you mean: 

Feed Model could not accept more data containers.

Former Member
0 Kudos

Hi Experts,

Anyone of you please help me, I am trying to display the viz charts but I am facing the below error.

Error: '[50014]' Feed model could not accept more data containers.

View.xml

Data.json File:

@Thanks In Advance

Regards

Sravya

Accepted Solutions (1)

Accepted Solutions (1)

francesco_alborghetti
Active Participant
0 Kudos

Hi,

please try to change viz feed uid="timeAxis" to uid="categoryAxis".

Check bindings section in VIZDOCS to get the exact sUid string for each chart type:

https://sapui5.netweaver.ondemand.com/docs/vizdocs/index.html#reference/chartProperty/Charts/Bar%20%...

Column chart uses valueAxis and categoryAxis.

Former Member
0 Kudos

Hi,


Thanks for your response , I need to display the  Bar Chart .


my vizType ="colum"

Where I can check the list of vizTypes and What I need to take in viz feed uid . I am not able to understand please help me on this.

@Thanks in advance

Regards

Sravya

francesco_alborghetti
Active Participant
0 Kudos

Hi Sravya,

If you need to display a bar chart, type definition should be:


vizType="bar"

Never mind, here a fiddle with working code:

column chart - JSFiddle

What you have to change is the declaration of chart feeds:


<viz:feeds>

            <viz.feeds:FeedItem uid="valueAxis" type="Measure" values="Value" />

            <viz.feeds:FeedItem uid="categoryAxis" type="Dimension" values="Model" />

            </viz:feeds>

Since column or bar charts accepts only valueAxis for measures and categoryAxis for dimensions.

Regards

Francesco

Former Member
0 Kudos

Hi Francesco,

Thank you very much, Issue resolved.

Regards

Sravya

Answers (0)