Inverted Chart axisY - CanvasJS JavaScript Charts

Inverted Chart axisY - CanvasJS JavaScript Charts

by canvasjs

HTML

<script src="https://canvasjs.com/assets/script/canvasjs.min.js"></script>
<br/><!-- Just so that JSFiddle's Result label doesn't overlap the Chart -->
<div id="chartContainer" style="height: 360px; width: 100%;"></div>

JavaScript

var chart = new CanvasJS.Chart("chartContainer",
	{
  	title:{
  		text:"Inverted AxisY"
  	},        
    data: [
      {
        type: "line",
        dataPoints: [
        { x: 10, y: 71 },
        { x: 20, y: 55},
        { x: 30, y: 50 },
        { x: 40, y: 65 },
        { x: 50, y: 95 },
        { x: 60, y: 68 },
        { x: 70, y: 28 },
        { x: 80, y: 34 },
        { x: 90, y: 14}
        ]
      }
      ]
    });
 
 invert(chart);
 chart.render();
 
 function invert(chart){  
  //Invert DataPoint Y Values.
	for(var i = 0; i < chart.options.data[0].dataPoints.length; i++){
      chart.options.data[0].dataPoints[i].y= -(chart.options.data[0].dataPoints[i].y) ;    
  }
  
  //Invert Y Axis Labels
  if(!chart.options.axisY)
    chart.options.axisY = {};
  
	chart.options.axisY.labelFormatter = function (e) {
    return -(e.value);
  };
 
	//Invert ToolTip Values
	if(!chart.options.toolTip)
  	 chart.options.toolTip = {};
  
	chart.options.toolTip.contentFormatter = function(e){
    var content = " ", entry;    
    for (var i = 0; i < e.entries.length; i++) {
      entry = e.entries[i];
      content = -(entry.dataPoint.y);
    }
    return content;
  }  
}