I have developed 2 highcharts in the code below:
<div>
<p id="container">
</p>
<p id="cont">
</p>
</div>
I specified the width and height as follows:
$('#cont').highcharts({
chart: {
width: 500,
height: 300,
type: 'pie',
options3d: {
enabled: true,
alpha: 45
}
},
The "cont" chart is positioned below the "container" chart, but I want both charts to be on the same line. See image for reference:
https://i.sstatic.net/bUpHZ.png
Additionally, I would like to know how to add a border to the charts.