Infinity seen as a tick
by amrutaJgtp
HTML
<script src="https://code.highcharts.com/stock/6.0.6/highstock.src.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<script src="https://code.highcharts.com/modules/export-data.js"></script>
<div id="container"></div>
JavaScript
Highcharts.chart('container', {
chart: {
zoomType: "xy"
},
"xAxis": {
"axisInternalName": "0",
categories: [
'Jan',
'Feb',
'Mar',
'Apr',
'May',
'Jun',
'Jul',
'Aug',
'Sep',
'Oct',
'Nov',
'Dec'
],
"tickmarkPlacement": "on"
},
"yAxis": [{
"opposite": false,
"axisInternalName": "0",
"gridLineWidth": 0,
"gridLineColor": "#C0C0C0",
"type": "logarithmic"
}],
"series": [{
"zIndex": 1,
"type": "column",
"yAxis": 0,
"data": [{
"categoryValue": "Jan",
"y": 2231925.21
}, {
"categoryValue": "Feb",
"y": 449656
}, {
"categoryValue": "Mar",
"y": 364879
}, {
"categoryValue": "Apr",
"y": 267200
}, {
"categoryValue": "May",
"y": 220020
}, {
"categoryValue": "Jun",
"y": 201737.66
}, {
"categoryValue": "Jul",
"y": 160100
}, {
"categoryValue": "Aug",
"y": 130101
}, {
"categoryValue": "Sep",
"y": 98000
}, {
"categoryValue": "Oct",
"y": 80100
}, {
"categoryValue": "Nov",
"y": 50100
}, {
"categoryValue": "Dec",
"y": 30000
}],
"name": "Salary",
"maxPointWidth": "70"
}]
});