Greetings,
I am working with the chart samples, Popup | ArcGIS API for JavaScript , and cannot for the life of me resize the chart. I can get the window to resize with the good ol' popup.resize(900,900);, but the chart content inside remains the same. Any help would be very much appreciated.
Solved! Go to Solution.
Hi William,
You can use the following CSS to do this:
.esriViewPopup .gallery .frame div.chart {
width: 200px;
height: 200px;
}
Hi William,
You can use the following CSS to do this:
.esriViewPopup .gallery .frame div.chart {
width: 200px;
height: 200px;
}
Winner winner chicken dinner!
Thanks, Jake!