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:
- Shrink the panelContainer to a smaller size (done)
- Remove the title to make more space (done)
- Shrink the chart to a smaller size where it fills the panelContainer
- Remove the Y labels from the chart
- 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?