convertPixelToValue(Number pixel)

Return the value along Axis for given pixel coordinate.


Parameters:
        pixel: pixel value over Axis

Example:
        chart.axisX[0].convertPixelToValue(250)

Note:
  • Chart should be rendered before you can use this method.

var  chart =  new  CanvasJS("container",
{
    .
    . 
    axisX: {
        title: "axisX Title"
    },
    .
    .
});
chart.render();

console.log(chart.axisX[0].convertPixelToValue(250));
Try it Yourself by Editing the Code below.

  Also See:    



If you have any questions, please feel free to ask in our forums.Ask Question