Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i'm using the java gwt-visualization API in verison 1.1.2. I trie to add more than one Chart to a Flowpanel in order to display them Side-by-Side, but they are always displayed below each other.

Do you know a way to display them side by side? thanks a lot in advance

share|improve this question

2 Answers

OK, I found a solution by overwriting the css class .gwt-viz-container with :

    .gwt-viz-container {
       float: left;
       position: relative;
    }
share|improve this answer

Is the Area, large enough to display both chart's without a Scroll bar? Else the flowpanel will display them under each otehr.

You can assign a with to the Flowpanel, witch is as large as the width of both Flow Panel. However in this case you can use a Horizontal Panel. This way your chart's are alowys side by side, but might overflow.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.