convertValueToPixel(Number value)

Return the pixel coordinate of the given value over axis.

Parameters:
        value: Numeric value over Axis

Example:
        chart.axisX[0].convertValueToPixel(20)
Note:
  • Chart should be rendered before you can use this method.
var  chart =  new  CanvasJS.Chart("container",
{
    .
    . 
    axisX: {
        title: "axisX Title"
    },
    .
    .
});
chart.render();

console.log(chart.axisX[0].convertValueToPixel(20));
Try Editing The Code

  Also See:    


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