crop: false and overflow=allow
by amrutaJgtp
HTML
<script src="https://code.highcharts.com/stock/6.1.1/highstock.src.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<script src="https://code.highcharts.com/modules/export-data.js"></script>
<div id="container"></div>
JavaScript
Highcharts.chart('container', {
"chart": {
"backgroundColor": "rgba(255,255,255,0)",
"plotBackgroundColor": "rgba(255,255,255,0)",
"zoomType": "xy",
"alignTicks": true,
"options3d": {
"enabled": false
}
},
"title": {
"text": ".",
"style": {
"color": "rgba(255, 255, 255, 0)",
"fontSize": "1px"
}
},
"tooltip": {
"enabled": true,
"shared": false,
"borderWidth": 1,
"borderRadius": 1,
"backgroundColor": "#ffffff",
"style": {
"color": "#000000",
"fontSize": "1rem",
"fontFamily": "Lucida Sans Unicode,Verdana,Helvetica,Arial",
"fontWeight": "normal",
"fontStyle": "normal",
"textDecoration": "none"
},
"crosshairs": [false, false]
},
"plotOptions": {
"series": {
"animation": {
"duration": 700
},
"cursor": "pointer",
"allowPointSelect": true,
"showInLegend": true,
"turboThreshold": 0,
"stickyTracking": false,
"events": {},
"pointPadding": 0.1,
"getExtremesFromAll": true
}
},
"legend": {
"enabled": true,
"item": {},
"borderWidth": 0,
"layout": "horizontal",
"backgroundColor": "rgba(255,255,255,0)",
"align": "center",
"verticalAlign": "bottom",
"margin": 0,
"padding": 5,
"symbolRadius": 0
},
"xAxis": {
"title": {
"text": "Top Hierarchy",
"margin": 5
},
"opposite": false,
"axisInternalName": "0",
"lineWidth": 1,
"lineColor": "rgba(174,174,174,1)",
"categories": ["Asia", "Africa", "Americas", "Europe", "Oceania"],
"tickmarkPlacement": "on",
"gridLineWidth": 0,
"gridLineColor": "#C0C0C0",
"plotLines": [],
"plotBands": [],
"max": null,
"scrollbar": {
"enabled": false,
"eQScrolltype": "auto"
}
},
"yAxis": [{
"title": {
"text": "Population2017",
"margin": 5
},
"opposite": false,
"axisInternalName": "0",
...