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

Im new to Dojo and CSS, so this will likely be basic stuff. Been learning a lot from the dojo gurus on Stack Exchange and appreciate it a lot.

I have a div (panelContainer) that contains a Dojo vertical bar chart (chartDiv) and a title.

When the screen width gets below a certain width, I need to run some CSS to:

  1. Shrink the panelContainer to a smaller size (done)
  2. Remove the title to make more space (done)
  3. Shrink the chart to a smaller size where it fills the panelContainer
  4. Remove the Y labels from the chart
  5. Create tooltips (with prior label strings) on the bars.

In this JSFiddle I have #1 & #2 sorted out.

@media only screen and (max-width: 500px) {
  .panelTitle {
        display: none;
    }
  #panelContainer {
        width: 120px;
        height: 120px;
    }
  .chartDiv {
        width: 110px;
        height: 110px;
    }

However, for #3, the chart does not shrink to 110x110, but stays the original size.
What needs changing in order for the chart to shrink down to this new size?

I am still researching how to go about #4 & #5. Not sure if it can be all done within CSS?

share|improve this question
Should I instead be having some conditionals in my createChart function using window.screen.availWidth, to set the chart up differently for mobile screen sizes? Whats best practise? – Simon Jan 19 at 2:34

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.