我正在基于滚动图示例构建一个应用程序以查看实时数据。我的x轴应将时间显示为格式化的字符串。添加到图中的x值是时间戳浮动(以秒为单位)。这是我的绘图窗口代码的简化版本。
一切都是实时的,显示我想要绘制的值没有问题,但是x轴的标签只是时间戳记,而不是格式化的字符串。我知道AxisItem重载中的formatTimestampToString(val)函数会返回一个好的字符串值。
import pyqtgraph as pg
class NewLegend(pg.LegendItem):
def __init__(self, size=None, offset=None):
pg.LegendItem.__init__(self, size, offset)
def paint(self, p, *args):
p.setPen(pg.mkPen(0,0,0)) # outline
p.setBrush(pg.mkBrush(255,255,255)) # background
p.drawRect(self.boundingRect())
class DateAxis(pg.AxisItem):
def tickStrings(self, values, scale, spacing):
strings = []
for val in values:
strings.append(formatTimestampToString(val))
return strings
class PlotWindow(QtWidgets.QWidget):
def __init__(self, iof, num):
QtWidgets.QWidget.__init__(self)
self.setWindowTitle('Plot Window ')
self.resize(1000, 800)
pg.setConfigOption('background', 'w')
pg.setConfigOption('foreground', 'k')
"""
... other stuff ...
"""
# Externally updated dict with data
self.data = {}
self.curves = {}
self.plotWidget = pg.GraphicsWindow("Graph Window")
axis = DateAxis(orientation='bottom')
self.plot = self.plotWidget.addPlot(axisItem={'bottom': axis})
self.plot.setAutoPan(x=True)
self.legend = NewLegend(size=(100, 60), offset=(70, 30))
self.legend.setParentItem(self.plot.graphicsItem())
def updatePlots(self):
#update data for the different curves
for data_name, curve in self.curves.items():
if curve != 0:
curve.setData(y=self.data[data_name].values[:], x=self.data[data_name].timestamps[:])
def addCurve(self, data_name):
if data_name not in self.curves:
self.curves[data_name] = self.plot.plot(y=self.data[data_name].values[:], x=self.data[data_name].timestamps[:], pen=pg.mkPen(color=self.randomColor(),width=3))
self.legend.addItem(self.curves[data_name], name=data_name)
def removeCurve(self, data_name):
if data_name in self.curves:
self.plot.removeItem(self.curves[data_name])
self.legend.removeItem(data_name)
del self.curves[data_name]
我做错什么了吗?有没有更好的方法来重载AxisItem?我还尝试用一个简单的数字公式重载AxisItem,以查看它是否对我的轴有影响。
我遇到的另一个问题是LegendItem:我可以毫无问题地添加和减去标签,但是添加标签时它只会更新图例框的大小。这意味着当我在绘图中添加和删除曲线/数据时,图例会增加,但再也不会缩小。我试过在删除标签后调用LegendItem.updateSize()函数,但没有任何反应。
希望您能提供帮助!谢谢
答案 0 :(得分:0)
所以我发现了问题。在 <?php
$args_trip = array (
'post_type' => 'trip' ,
'post_status' => 'publish',
'tax_query' => array (
array (
'taxonomy' => 'destination',
'field' => 'slug',
'terms' => $term
)
)
);
$trips = new WP_Query( $args_trip );
?>
<?php
if ( $trips->have_posts() ) : ?>
<div class="archive-grid">
<?php
/* Start the Loop */
while ( $trips->have_posts() ) : $trips->the_post();
get_template_part( 'template-parts/content', 'trip' );
endwhile;
wp_reset_postdata();
?>
</div>
<hr>
中,它应该说是axisItems,而不是axisItem。