我正在使用 PrimeFaces' pieChart 。我有.jqplot-data-label
项代表图表的数据标签。它们是自动定位的,我无法将它们相对于当前位置定位,因为它们的位置在每种情况下都由 jqplot PieRenderer 自动给出。
如果我想将它们放在现在位置下10个像素的位置,我会执行以下操作:
.jqplot-data-label { margin-top: 10px !important; }
但是我无法将它们定位在10个像素上方它们现在的位置。 我能做些什么来实现这个目标?
答案 0 :(得分:0)
负面定位对我有用。
.jqplot-data-label { margin-top: -10px !important; }
它还有助于阅读以下文章: The Definitive Guide to Using Negative Margins