标签: jqplot
我使用jqplot绘制图形。点值之间存在巨大差异:点a为2,点2为5,点3为500,点4为10。
jqplot比例系统构建正确的图形,但由于差异很大,较小的值表示为细线,几乎在图形上不可见(点a不可见,点b是一条细线)。
为了更好地看到值表示,我想建立像这样的东西(photoshop图片,而不是jqplot渲染):
示例:
有办法吗?我甚至不知道怎么称呼这个选项,但我知道我在某些图表中看到过类似的东西。我在jqplot中有一个选项来启用它吗?
谢谢。
答案 0 :(得分:1)
您可以将y轴定义为对数轴:
axes: { yaxis:{ renderer: $.jqplot.LogAxisRenderer } }
包含此文件后:<script type="text/javascript" src="../plugins/jqplot.logAxisRenderer.(min.)js"></script>
<script type="text/javascript" src="../plugins/jqplot.logAxisRenderer.(min.)js"></script>
您可以找到示例here和一些文档here