Highcharts min marker old url

by saurabhkolhe

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/highcharts-more.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<script src="https://code.highcharts.com/modules/export-data.js"></script>
<script src="https://code.highcharts.com/modules/accessibility.js"></script>

<figure class="highcharts-figure">
    <div id="container"></div>
</figure>

JavaScript

var chartOptions = {
    "chart": {
        "backgroundColor": "rgba(255,255,255,0)",
        "plotBackgroundColor": "rgba(255,255,255,0)",
        "zoomType": "xy",
        "resetZoomButton": {
            "theme": {
                "style": {
                    "visibility": "hidden"
                }
            }
        },
        "spacingBottom": 5,
        "spacingTop": 10,
        "alignTicks": true,
        "options3d": {
            "enabled": false
        },
        "zooming": {
            "mouseWheel": false
        }
    },
    "title": {
        "text": ".",
        "style": {
            "color": "rgba(255, 255, 255, 0)",
            "fontSize": "1px"
        },
        "floating": true,
        "margin": 0
    },
    "tooltip": {
        "enabled": true,
        "borderWidth": 1,
        "borderRadius": 1,
        "backgroundColor": "#ffffff",
        "style": {
            "color": "#000000",
            "fontSize": "1rem",
            "fontFamily": "Open Sans",
            "fontWeight": "normal",
            "fontStyle": "normal",
            "textDecoration": "none"
        },
        "useHTML": true,
        "shared": false,
        "crosshairs": [
            false,
            false
        ],
        "followPointer": true
    },
    "plotOptions": {
        "series": {
            "animation": null,
            "cursor": "pointer",
            "allowPointSelect": true,
            "showInLegend": true,
            "turboThreshold": 0,
            "stickyTracking": false,
            "events": {},
            "point": {
                "events": {}
            },
            "borderRadius": 0,
            "pointPadding": 0.1,
            "getExtremesFromAll": true
        }
    },
    "legend": {
        "enabled": true,
        "item": {},
        "borderWidth": 0,
        "layout": "horizontal",
        "eQLegendPlacement": "CHART",
        "backgroundColor": "rgba(255,255,255,0)",
        "itemHoverStyle": {
            "color":...