Hello,

As you can toice from my previous messages I'm not a programmer and new in 
Python. A "good piece of meat" let's say.

I am having troubles with AxisItems, and reviewing the previous posts most 
of you plot in this way:

    layout = pg.GraphicsLayoutWidget
    P = pg.PlotWidget(name=name)
    layout.addWidget(P,row,column)
    
    Px = P.plot()
    Px.setPen(color, width=.5)
    P.setLabel('left', ylabel,**labelStyle)


While what I am doing is

    w1=layout.addPlot(row=0, col=0, title = 'Group 
1',axisItems={'bottom':rpmXAxis,'left':rpmYAxis})
    w1.addLabel()
    w1.plot(x,y,pen=color(*colcode),name="plot")

Is the same to add a PlotWidget to a LayoutWidget than add a plot to a 
PlotWidget that add a Plot to a layoutwidget?

-- 
You received this message because you are subscribed to the Google Groups 
"pyqtgraph" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/pyqtgraph/6972fcd5-e1c0-4da7-a6a7-b7d9ae5cc7ed%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to