Sample High chart
Sample Graph
by Rambabu Pudi
HTML
<script src="https://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 400px; min-width: 310px; max-width: 600px; margin: 0 auto"></div>
JavaScript
var chartobj = Highcharts.chart('container', {
chart: {
renderTo: 'container',
plotBorderWidth: 1,
},
legend: {
enabled: false
},
"title": {
"text": ""
},
"xAxis": {
"categories": [" "]
},
"yAxis": [{
"title": {
"text": "COST"
},
"opposite": false
},
{
"title": {
"text": "CURRENCY"
},
"opposite": false
},
{
"title": {
"text": "MARGIN"
},
"opposite": true
},
{
"title": {
"text": "LOCALSALES"
},
"opposite": true
},
{
"title": {
"text": "ESTIMATEDCOST"
},
"opposite": true
}],
"series": [{
"name": "COST/Live",
"type": "spline",
"data": [{
"y": 1.27776782397E9
}]
},
{
"name": "CURRENCY/Live",
"type": "spline",
"data": [{
"y": 37.48
}]
},
{
"name": "MARGIN/Live",
"type": "spline",
"data": [{
"y": 1.071855772462E9
}]
},
{
"name": "LOCALSALES/Live",
"type": "spline",
"data": [{
"y": 2.283558991E7
}]
},
{
"name": "ESTIMATEDCOST/Live",
"type": "spline",
"yAxis": 1,
"data": [{
"y": 50.29
}]
}],
});