score:2

1. Make area series not to start from zero (y axis)

You need to specify a threshold property for this series. By default it's 0 and that's the cause of your problem.

API reference: https://api.highcharts.com/highcharts/series.area.threshold


2. Force the x axis label to be always displayed for the last point

By default Highcharts automatically calculates and decides which ticks to show. Labels appear where the ticks do. So to make sure that some specific tick appears on the axis use tickPosition (define all ticks manually) or tickPositioner (modify the ticks created by Highcharts before passing them to the chart constructor).

API references:


Related Query

More Query from same tag