i am struggling with positioning the high-chart with a label, as seen in the image below https://i.sstatic.net/m9bXW.png
does anyone know how to properly display the chart from the top left corner?
i have attempted to adjust the settings like this
{
legend: {
itemStyle: {
fontSize:'8px'
},
align: 'right',
layout: 'vertical',
verticalAlign: 'top',
x: this.state.legendXValue ? this.state.legendXValue : 10,
y: this.state.legendYValue ? this.state.legendYValue : 30,
backgroundColor: 'rgba(255,255,255,0.2)'
}
}
however, the chart is not aligning to the top left corner as expected
can someone provide guidance on configuring the chart components to render it from the top left corner while utilizing the available space effectively?