无法在y轴上打印jqPlot覆盖线标签值

I am working with Jqplot Graph chart.
I can print the dotted-line which you can see in the image. But I am not able to print the value of this line on the right side (on the y-axis)

Here's my code:

grid: {
   backgroundColor: "#fff",
   gridLineColor: '#343339',
   gridLineWidth: 1
   },

   canvasOverlay: {
        show: true,
        objects: [
            {
                dashedHorizontalLine:
                        {
                            name: 'bid value',
                            y: '1.24623',
                            lineWidth: '3',
                            color: 'rgb(100, 55, 124)',
                            yaxis: 'y2axis',
                            lineCap:'butt',

                            shadow: true
                        }}


        ],
         showTooltipPrecision: 0.6,
                            tooltipLocation: 'ne',
                           // fadeTooltip: true,
                           // tooltipFadeSpeed: "slow",
                            tooltipOffset: 4,
                            tooltipFormatString: '%d, %d',
        showTooltip:true
    },

Value keeps on changing randomly enter image description here

Thanks in advance