折线图标记,参考 https://echarts.apache.org/examples/zh/editor.html?c=line-marker
    image.png

    1. {
    2. series: [
    3. {
    4. name: 'Highest',
    5. type: 'line',
    6. symbol: 'none',
    7. markPoint: {
    8. symbol: 'pin', // 标记类型
    9. symbolSize: 40, // 图形大小
    10. data: [
    11. {
    12. value: '开始时间', // 黄点
    13. xAxis: 2, // data[index]
    14. yAxis: 116, // data.value
    15. itemStyle: {
    16. normal: {
    17. color: '#fac858',
    18. opacity: 0.8,
    19. label: {
    20. show: true,
    21. },
    22. },
    23. },
    24. },
    25. {
    26. value: '结束时间',
    27. xAxis: 37,
    28. yAxis: 117,
    29. itemStyle: {
    30. normal: {
    31. color: '#5470c6',
    32. opacity: 0.8,
    33. label: {
    34. show: true,
    35. },
    36. },
    37. },
    38. },
    39. ],
    40. }
    41. }
    42. ];
    43. }