如果线是卷曲的,Jqplot有时会在荧光笔中显示错误的值

时间:2017-03-02 21:05:26

标签: jqplot

如果线条是卷曲的,我的jqplot图形的荧光笔显示错误的值。 在附图中,您可以看到它在y轴上显示的值高于数字50的49%,它应该在下面。

我不知道为什么会发生这种情况,我该如何解决它。有什么建议?

Wrong value shown in highlighter

1 个答案:

答案 0 :(得分:0)

你能发布一些源代码吗?

无论如何,在jqplot中有一种方法可以自定义标签。 例如,您可以添加格式化程序'功能,操纵刻度数据和格式。像:

...
    options.axes.xaxis.tickOptions.formatter = function(format,value) {
                return xAxiformatter(value).toFixed(2);
            }
...
    function xAxiformatter(value) {
                return -4.57 + xSlope * (value - modMinX);
            }
...

http://www.jqplot.com/docs/files/plugins/jqplot-canvasAxisTickRenderer-js.html# $。jqplot.CanvasAxisTickRenderer.formatter

您也可以使用此格式化程序功能来制作"解决方法"问题的解决方案。