javascript - Align An Image Beside Chart -
i trying add heatmap image beside chart, shown below. want heatmap image directly beside chart. has tried set chart height , image height same not work. chart generated dynamically out onto tab panel.
question: how make sure chart height aligned heatmap image height? in short, how make them side side each other? appreciate if can provide me on this, lot!!
regards,
felicia
you should able align them applying display:inline-block both.
for example, if chart tagged id="chart" , heatmap tagged id="heatmap", css should below:
#chart{display:inline-block} #heatmap{display:inline-block}
Comments
Post a Comment