Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
刚刚注意到显示的饼图没有利用容器的全部宽度和高度。
我可以看到一些空格。下面附上图片。
我已经为 div 绘制了边框。很明显,饼图没有利用完整的宽度和高度。
我该如何解决这个问题?
任何帮助,将不胜感激。
提前致谢。
看起来默认的饼图渲染器有 20px 的填充。通过调整填充来减少它,例如:
jQuery("#'. $id .'").jqplot([your data here], { seriesDefaults: { renderer: jQuery.jqplot.PieRenderer, rendererOptions: { padding: 10 } } });