convertValueToPixel - returns Pixel coordinate on axis | CanvasJS JavaScript Charts

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 … Continue reading convertValueToPixel()