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.
  1. var chart = new CanvasJS.Chart("container",
  2. {
  3. .
  4. .
  5. axisX: {
  6. title: "axisX Title"
  7. },
  8. .
  9. .
  10. });
  11. chart.render();
  12.  
  13. 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