我需要隱藏yaxis中的標籤-200,有沒有什麼方法可以隱藏第一個yaxis標籤? 所以y軸標籤的結果將是[空],0,200,400,600,800隱藏第一個yaxis標籤
2
A
回答
3
我所做的是返回負值一個空字符串。
tickOptions: {
formatter: function (format, value) {
if (value < 0) {
return ' ';
}
else {
return value
}
}
}
2
讓我們說你的圖表包括在具有「chart1」一個div的ID,您可以使用隱藏第一y軸標籤:
$("div#chart1 div.jqplot-yaxis div.jqplot-yaxis-tick:nth-child(1)").css('display','none');
其中div#chart1
代表圖表,div.jqplot-yaxis
你y軸刻度的容器和jqplot-yaxis-tick:nth-child(x)
該容器中的第x個蜱(它從1到蜱的數量 - 其中1代表您的圖表底部的蜱)
相關問題
- 1. 隱藏Highcharts中的第一個yAxis標籤
- 2. 隱藏標籤
- 3. 隱藏標籤
- 4. 隱藏標籤
- 5. 如何隱藏AreaChart中的第一個hAxis標籤?
- 6. CSS - 隱藏標籤第n + 2的div
- 7. 取消隱藏一個隱藏的標籤欄(的TabBar)
- 8. 隱藏一個div標籤隱藏其他
- 9. 隱藏標籤頁
- 10. 隱藏軸標籤
- 11. 隱藏在標籤
- 12. 隱藏第一個選項
- 13. 隱藏取消隱藏div標籤
- 14. Areaspline:邊對邊的線條和隱藏第一Y標籤
- 15. 隱藏第一子
- 16. 找到一個標籤,並在其旁邊隱藏另一個標籤
- 17. 隱藏/顯示yaxis系列隱藏/顯示事件
- 18. Highchart yAxis plotLines標籤位置
- 19. rChart nPlot - 更新yAxis標籤
- 20. matplotlib set yaxis標籤尺寸
- 21. ChartJS linechart編輯yAxis標籤
- 22. Flot yaxis標籤不顯示
- 23. Highcharts yaxis標籤格式
- 24. Xamarin Oxyplot:如何隱藏YAxis小勾號?
- 25. 將一串標籤隱藏到數組
- 26. matplotlib subplot boxplot隱藏一些軸標籤
- 27. MSCharts最後一軸標籤隱藏
- 28. 隱藏/顯示多個WTForm標籤
- 29. 隱藏軸標籤SSRS圖
- 30. Tablayout中隱藏標籤Android