I\'m plotting a map made by a series of points in HighCharts. I want that map to be properly scaled and be a perfect square.
Thus, i\'ve set the chart height and wid
You can extend Highcharts with new function. Here you can find information about extending Highcharts: http://www.highcharts.com/docs/extending-highcharts/extending-highcharts
As you will see in my demo, I wrapped setChartSize function and give them possibility to use parameters from your chart options:
chart: {
plotAreaWidth: 300,
plotAreaHeight: 200
},
Function is also positioning your plot area in the middle of chart container.
example: http://jsfiddle.net/izothep/eph5secj/2/