score:1

Accepted answer

You can position data labels above the markers by using y property:

  series: [{
      ...,
      milestone: true,
      dataLabels: {
        ...,
        y: -10
      }
    }, ...]

Live demo: https://jsfiddle.net/BlackLabel/yv641op0/

API Reference: https://api.highcharts.com/gantt/series.gantt.dataLabels.y


Related Query

More Query from same tag