stefan
stefan

Reputation: 718

Using amChart in qooxdoo mobile

I'm trying to use amChart in a qooxdoo mobile application. The problem I'm facing right now is that in qooxdoo I don't have a <div> tag to draw the chart at. Because chart.write("chartdiv"); expects a <div> container. In qooxdoo desktop it would work like this:

chart.write(widget.getChildControl("body").getContentElement().getDomElement());

Unfortunatly the qooxdoo Mobile widget does not provide any of these methodes.

Can somebody tell me how this can be done with a qooxdoo Mobile widget?

Upvotes: 0

Views: 113

Answers (1)

czuendorf
czuendorf

Reputation: 863

qx.Mobile is much nearer to the DOM tree than qx.Desktop.

A default widget is based on a "div" tag. So if you use, for example, a qx.ui.mobile.container.Composite(), and then call getContentElement(), you will have the required "div" element.

Another way could be the http://demo.qooxdoo.org/current/apiviewer/#qx.ui.mobile.embed.Html

Upvotes: 0

Related Questions