. Luke -- -- [ You are subscribed to pyqt...@googlegroups.com. To unsubscribe, send email to pyqtgraph+...@googlegroups.com ] --- You received this message because you are subscribed to a topic in the Google Groups "pyqtgraph" group. To unsubscribe from this topic, visit https://groups.google.com/d/topic/pyqtgraph/PL8Wu-c_2Is/unsubscribe?hl=en. To unsubscribe from this group and all its topics, send an email to pyqtgraph+...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out. |
. Luke |
-- -- [ You are subscribed to pyqt...@googlegroups.com. To unsubscribe, send email to pyqtgraph+...@googlegroups.com ] --- You received this message because you are subscribed to a topic in the Google Groups "pyqtgraph" group. To unsubscribe from this topic, visit |
To unsubscribe from this group and all its topics, send an email to pyqtgraph+...@googlegroups.com. For more options, visit |
Hello, Luke.
Sorry, this doesn't works.
plot.getAxis('left').textWidth = 200p1.getAxis('left').setWidth(200)
> wrote: |
-- -- [ You are subscribed to pyqt...@googlegroups.com. To unsubscribe, send email to pyqtgraph+...@googlegroups.com ] --- You received this message because you are subscribed to a topic in the Google Groups "pyqtgraph" group. To unsubscribe from this topic, visit |
To unsubscribe from this group and all its topics, send an email to pyqtgraph+...@googlegroups.com. For more options, visit |
Hello, Luke.
Can I download this next release?
> wrote: |
-- -- [ You are subscribed to pyqt...@googlegroups.com. To unsubscribe, send email to pyqtgraph+...@googlegroups.com ] --- You received this message because you are subscribed to a topic in the Google Groups "pyqtgraph" group. To unsubscribe from this topic, visit |
To unsubscribe from this group and all its topics, send an email to pyqtgraph+...@googlegroups.com. For more options, visit |
but beware that this also has some experimental new features in it that are not well-tested. |
-- -- [ You are subscribed to pyqt...@googlegroups.com. To unsubscribe, send email to pyqtgraph+...@googlegroups.com ] --- You received this message because you are subscribed to a topic in the Google Groups "pyqtgraph" group. To unsubscribe from this topic, visit |
To unsubscribe from this group and all its topics, send an email to pyqtgraph+...@googlegroups.com. For more options, visit |
Hello, Luke.
I understand how to move axes.
But I also want to move and scale PlotCurveItem as well.
, which provides a huge set of methods to play with (notably, 'scale' and 'translate'). |
-- -- [ You are subscribed to pyqt...@googlegroups.com. To unsubscribe, send email to pyqtgraph+...@googlegroups.com ] --- You received this message because you are subscribed to a topic in the Google Groups "pyqtgraph" group. |
To unsubscribe from this topic, visit https://groups.google.com/d/topic/pyqtgraph/PL8Wu-c_2Is/unsubscribe. |
To unsubscribe from this group and all its topics, send an email to pyqtgraph+...@googlegroups.com. For more options, visit |
But, there is a lot of places where I have to apply coefficients, and synchronize it all.
At least 3 places - AxisItem.py, ViewBox.py ('updateMatrix') and code that we create PlotWidget.
That is complex.
(Now I work on it.)
I just want to make smaller margins in plot image.It details:Lets again see on picture in this message (it's above):I want to make less size for margins that marked by red arrows.I can do this by manipulating AxisItem, but this in insufficient. This action gives a bit more horisontal space for PlotCurveItem, so, I must scale PlotCurveItem a little. Also, I have to apply same scale to bottom AxisItem.It you help me, that will be gracious service from you.
-- -- [ You are subscribed to pyqt...@googlegroups.com. To unsubscribe, send email to pyqtgraph+...@googlegroups.com ] --- You received this message because you are subscribed to a topic in the Google Groups "pyqtgraph" group. To unsubscribe from this topic, visit |
To unsubscribe from this group and all its topics, send an email to pyqtgraph+...@googlegroups.com. For more options, visit |
-- -- [ You are subscribed to pyqt...@googlegroups.com. To unsubscribe, send email to pyqtgraph+...@googlegroups.com ] --- You received this message because you are subscribed to a topic in the Google Groups "pyqtgraph" group. To unsubscribe from this topic, visit |
To unsubscribe from this group and all its topics, send an email to pyqtgraph+...@googlegroups.com. For more options, visit |
Well, what I make:
1. to AxisItem - setWidth.
p1.getAxis('left').setWidth(20)
p1.getAxis('right').setWidth(20)
ax3.setWidth(20)
2. to ViewBox.geometry - set new geometry with same value.
def updateViews():
## view has resized; update auxiliary views to match
global p1, p2, p3
gg1 = p1.vb.sceneBoundingRect()
gg1.setLeft(20)
p2.setGeometry(gg1)
p3.setGeometry(gg1)
> wrote: |
-- -- [ You are subscribed to pyqt...@googlegroups.com. To unsubscribe, send email to pyqtgraph+...@googlegroups.com ] --- You received this message because you are subscribed to a topic in the Google Groups "pyqtgraph" group. To unsubscribe from this topic, visit |
To unsubscribe from this group and all its topics, send an email to pyqtgraph+...@googlegroups.com. For more options, visit |
Hello, Luke.
There is one pixel mistake - I think, I can remove it.
Here is modified code and screenshot.
> wrote: |
-- -- [ You are subscribed to pyqt...@googlegroups.com. To unsubscribe, send email to pyqtgraph+...@googlegroups.com ] --- You received this message because you are subscribed to a topic in the Google Groups "pyqtgraph" group. To unsubscribe from this topic, visit |
To unsubscribe from this group and all its topics, send an email to pyqtgraph+...@googlegroups.com. For more options, visit |