highcharts quadrant chifted centre

by prakhar230792

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>

<div id="container" style="height: 400px"></div>

JavaScript

Highcharts.chart('container', {
	"type": "svg",
	"title": {
		"text": null
	},
	"chart": {
		"type": "scatter"
	},
	"plotOptions": {
		"scatter": {
			"marker": {
				"lineWidth": 2
			}
		},
		"series": {
			"showInLegend": false
		}
	},
	"legend": {
		"enabled": false
	},
	"tooltip": {
		"backgroundColor": "#5F5F5F",
		"borderColor": "#5F5F5F",
		"shadow": false,
		"style": {
			"color": "#FAFAFA",
			"opacity": 0.95
		}
	},
	"colors": [
		"#8CC350",
		"#5A6EAA",
		"#D755A5",
		"#1EBED7",
		"#F0A01E",
		"#9B8CE6",
		"#3CB5A0",
		"#3287D2",
		"#F0557D",
		"#C3D250",
		"#EB782D",
		"#78B4F5",
		"#5FAF69",
		"#AA5FA5",
		"#FA5A50",
		"#F5C841"
	],
	"xAxis": {
		"type": "datetime",
		"title": {},
    lineWidth: 0,
    gridLineWidth: 0,
    plotLines : [{
    	color: '#000000',
      width: 1,
      value: 1547847627
    }]
	},
	"yAxis": {
		"type": "linear",
		"title": {},
    plotLines : [{
    	color: '#000000',
      width: 1,
      value: 35
    }]
	},
	"series": [
		{
			"color": "#000000",
			"marker": {
				"lineColor": "#000000"
			},
			"findNearestPointBy": "xy",
			"data": [
				[
					1547647627,
					11
				],
				[
					1547747627,
					35
				],
				[
					1547847627,
					40
				],
				[
					1547947627,
					55
				]
			]
		}
	],
	"credits": {
		"enabled": false
	}
});