9
A
回答
-3
嘗試parseInt(y_axis)
(填料文字,回答太短)
27
如果我理解你想要什麼,是在y軸的整數值顯示。
試試這個,
axesDefaults:
{
min: 0,
tickInterval: 1,
tickOptions: {
formatString: '%d'
}
}
1
覆蓋createTicks功能和推出新的軸布爾屬性 - integersOnly。
// jqplot adding integersOnly option for an axis
var oldCreateTicks = $.jqplot.LinearAxisRenderer.prototype.createTicks;
$.jqplot.LinearAxisRenderer.prototype.createTicks = function (plot) {
if (this.integersOnly == true) {
var db = this._dataBounds;
var min = ((this.min != null) ? this.min : db.min);
var max = ((this.max != null) ? this.max : db.max);
var range = max - min;
if (range < 3) {
if (this.min == null) {
this.min = 0;
}
this.tickInterval = 1;
}
}
return oldCreateTicks.apply(this, plot);
}
1
只是建立在最上面的答案。
axes: {
yaxis: {
min: 0,
tickInterval: 1,
tickOptions: {
formatString: '%d'
}
}
}
只適用於yaxis。有幫助的,如果你有一個條形圖或其他圖表,並且你想要隔離軸線。
相關問題
- 1. jqplot - 不想顯示/顯示y軸
- 2. 格式Y軸蜱jqplot /值
- 3. 在jqPlot中,如何去除y軸線?
- 4. jqPlot - 如何在y軸上顯示文本?
- 5. JqPlot 2 Y軸:只顯示左軸的水平網格線
- 6. 如何在Jqplot中獲取Y軸的整數值?
- 7. 在GUI圖中顯示Y軸的值
- 8. 我如何修復Y軸在jqplot
- 9. JQplot barRenderer「y軸」值從負值開始
- 10. jqPlot - Y軸上的時間值
- 11. 如何在d3.js中顯示y軸
- 12. Jqplot - 高亮顯示工具提示多軸y的數據
- 13. jqplot tooltipContentEditor顯示錯誤x和y值
- 14. 僅顯示Y軸上的最小值/最大值(使用C3JS)
- 15. 如何在這個amchart示例代碼中顯示y軸值?
- 16. 限制ggplot2中的Y軸顯示值
- 17. jqPlot造型 - 如何刪除Y軸線?
- 18. Jqplot y軸值爲KB/MB/TB/PB
- 19. 僅在0軸上顯示Y軸上的網格線
- 20. jqPlot顯示y-ticks兩次
- 21. CFCHART - 如何讓Y軸標籤僅顯示在右側?
- 22. 如何在morris線圖中的線點上顯示y軸值
- 23. Chartjs:如何僅顯示y軸上的最大值和最小值
- 24. 移動鼠標時如何顯示X軸和Y軸的值?
- 25. 顯示Y軸上的最小刻度JQPlot
- 26. jQPlot:設置Y軸編號
- 27. 在縮放JQplot圖表時,將y軸值整數
- 28. Plot:在y軸上顯示具體值
- 29. jqplot日期渲染,僅在x軸上顯示星期日
- 30. 如何在jqplot的折線圖中繪製多個y軸
我只用了「tickOptions:formatString:'%d'」,它效果很好。 –
但是對於y軸上的最大1pt,它顯示y軸上的o,1,1 – jbmyid