Logarithmic scatter negative Y

by kzoon

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 600px"></div>

JavaScript

Highcharts.chart('container', {

        "chart": {
            "type": "scatter",
 
        },

        "yAxis": [
            {

                "type": "logarithmic",
                "min": 1,
  
            }
        ],
        "xAxis": [
               {

                "type": "logarithmic",
                "min": 1,
  
            }
        ],
        "series": [
            {

                "data": [
                    {
                        "name": "A",
                        "x": 1,
                        "y": -1
                    },
                    {
                        "name": "B",
                        "x": 10,
                        "y": 10
                    },
                    {
                        "name": "C",
                        "x": 500,
                        "y": 500
                    }
                ],
            }
        ]
 
 
});