I am facing an issue with a heatmap having extra space at the bottom that I cannot seem to remove. Despite trying various solutions from different Stack Overflow threads, such as adjusting chart.marginBottom, chart.spacingBottom, x and yAxis margins, and disabling the legend, I have had no success. Strangely, when I created a jsfiddle to demonstrate the problem, I could not replicate it. You can view the code in the jsfiddle that closely resembles mine: http://jsfiddle.net/b637gdxv/1/
chart: {
type: 'heatmap',
marginTop: 26,
marginLeft: 5,
marginRight: 5,
marginBottom: 5,
width: 200, // - width when in one row
height: 250,
borderWidth: 3,
borderColor: 'grey',
borderRadius: 5,
plotBackgroundColor: '#FFFFFF',
plotShadow: true
},
Below is an image showing how it appears on my page:
https://i.sstatic.net/LZhvS.png
I am struggling to pinpoint the exact source of the issue as the discrepancy between my page and the jsfiddle remains unclear to me. As I am not very familiar with javascript, I am seeking suggestions or potential solutions that could help resolve this problem. Any insights or advice would be greatly appreciated.